/* ==========================================================
   EliteEducation CRM Core Styles
   ========================================================== */

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Drawer Transitions & Styling */
.drawer-pane {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-backdrop {
    transition: opacity 0.3s ease-in-out;
}

/* 3-Dot & Dropdown Menus */
.crm-dropdown-menu {
    transform-origin: top right;
    animation: fadeIn 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Kanban Board Column Styling */
.kanban-column {
    min-height: 580px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    transition: all 0.2s ease;
}
.kanban-column.drag-over {
    background-color: #eef2ff;
    border-color: #6366f1;
}

/* Student Profile Pillar Tabs */
.pillar-tab-btn.active {
    color: #4f46e5;
    border-bottom: 2px solid #4f46e5;
    font-weight: 600;
}

/* Print Receipt Specific CSS */
@media print {
    body * {
        visibility: hidden;
    }
    #printable-receipt-area, #printable-receipt-area * {
        visibility: visible;
    }
    #printable-receipt-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 20px;
        background: white !important;
        color: black !important;
        border: none !important;
        box-shadow: none !important;
    }
    .no-print {
        display: none !important;
    }
}

