:root {
    /* BATIPRO Royal Purple */
    --primary: #6D28D9;
    --primary-hover: #5B21B6;
    --primary-light: #EDE9FE;
    
    /* Backgrounds */
    --bg-app: #F8FAFC;
    --bg-surface: #FFFFFF;
    --bg-hover: #F1F5F9;
    
    /* Text */
    --text-main: #0F172A;
    --text-muted: #64748B;
    
    /* Borders */
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    
    /* Border Radius (Modern 8px-12px) */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-full: 9999px;
    
    /* Soft Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    
    /* Tags and Status Colors */
    --color-hot: #EF4444;
    --color-hot-bg: #FEE2E2;
    --color-warm: #F59E0B;
    --color-warm-bg: #FEF3C7;
    --color-cold: #3B82F6;
    --color-cold-bg: #DBEAFE;
    --color-success: #10B981;
    --color-success-bg: #D1FAE5;
    
    /* Layout */
    --sidebar-width: 260px;
    --header-height: 64px;
    
    /* Animation */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item:hover {
    transform: translateX(8px);
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.news-item {
    animation: slideInRight 0.3s ease-out backwards;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-app);
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Layout */
.app-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 10;
}

.sidebar-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid var(--border-light);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: var(--transition);
}

.nav-item i {
    font-size: 20px;
    transition: var(--transition);
}

.nav-item:hover {
    background-color: var(--bg-hover);
    color: var(--text-main);
}

.nav-item.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

.nav-separator {
    height: 1px;
    background-color: var(--border-light);
    margin: 4px 12px;
}

.sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid var(--border-light);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.top-header {
    height: var(--header-height);
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    flex-shrink: 0;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--bg-hover);
    border-radius: var(--radius-md);
    padding: 0 12px;
    width: 200px;
    max-width: 100%;
    border: 1px solid transparent;
    transition: var(--transition);
}

.search-bar:focus-within {
    background-color: var(--bg-surface);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-bar i {
    color: var(--text-muted);
    font-size: 18px;
}

.search-bar input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    width: 100%;
    outline: none;
    color: var(--text-main);
    font-size: 14px;
    font-family: inherit;
}

.search-shortcut {
    font-size: 12px;
    color: var(--text-muted);
    background-color: var(--bg-surface);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--bg-hover);
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-btn:hover {
    background-color: var(--bg-hover);
    color: var(--text-main);
}

.badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--color-hot);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-surface);
}

.user-profile {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.user-profile:hover {
    border-color: var(--primary-light);
}

.user-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page Content */
.page-container {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.page-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 14px;
}

.page-actions {
    display: flex;
    gap: 12px;
}

/* Kanban Board */
.kanban-board {
    display: flex;
    flex: 1;
    overflow-x: auto;
    padding-bottom: 16px;
}

.kanban-col {
    min-width: 340px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    padding-right: 32px;
    padding-left: 32px;
    border-right: 1px solid var(--border);
}

.kanban-col:first-child {
    padding-left: 0;
}

.kanban-col:last-child {
    border-right: none;
    padding-right: 0;
}

.kanban-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 4px;
}

.col-title {
    font-weight: 600;
    color: var(--text-main);
    font-size: 14px;
}

.col-count {
    background-color: var(--border);
    color: var(--text-muted);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.kanban-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    cursor: grab;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--border-light);
}

.card:active {
    cursor: grabbing;
}

.card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.tag-hot { background-color: var(--color-hot-bg); color: var(--color-hot); }
.tag-warm { background-color: var(--color-warm-bg); color: var(--color-warm); }
.tag-cold { background-color: var(--color-cold-bg); color: var(--color-cold); }
.tag-success { background-color: var(--color-success-bg); color: var(--color-success); }
.tag-new { background-color: var(--primary-light); color: var(--primary); }

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
    line-height: 1.3;
}

.card-client {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

.card-date {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-date i {
    font-size: 14px;
}

.text-orange { color: var(--color-warm); font-weight: 500; }
.text-green { color: var(--color-success); font-weight: 500; }

.card-avatars img {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-surface);
}

.card-progress {
    margin-bottom: 16px;
}

.progress-bar {
    height: 6px;
    background-color: var(--border-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

.progress-text {
    font-size: 12px;
    color: var(--text-muted);
}

.card-details .amount {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    display: block;
    margin-bottom: 12px;
}

.add-card-btn {
    margin-top: 12px;
    background: transparent;
    border: 1px dashed var(--border);
    color: var(--text-muted);
    padding: 10px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.add-card-btn:hover {
    background-color: var(--bg-surface);
    color: var(--text-main);
    border-color: var(--text-muted);
}

/* Floating Action Button */
.fab-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: white;
    border: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    z-index: 100;
}

.fab-btn:hover {
    transform: scale(1.05);
    background-color: var(--primary-hover);
}

.fab-btn:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 1024px) {
    .sidebar {
        position: absolute;
        transform: translateX(-100%);
    }
    .top-header {
        padding: 0 16px;
    }
    .search-bar {
        width: 200px;
    }
    .page-container {
        padding: 16px;
    }
}

/* Drawer & Modal Overlays */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(2px);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Slide-over Drawer */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100vh;
    background-color: var(--bg-surface);
    box-shadow: var(--shadow-lg);
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.drawer.active {
    transform: translateX(0);
}

.drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.drawer-title-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
}

.drawer-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    gap: 24px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.drawer-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: var(--text-muted);
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.project-desc {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-hover);
    padding: 16px;
    border-radius: var(--radius-md);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-main);
    font-family: inherit;
}

.action-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--primary-light);
}

.action-card i {
    font-size: 24px;
}

.action-card span {
    font-size: 12px;
    font-weight: 500;
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Modal */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 500px;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 210;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 600;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.row-2 {
    flex-direction: row;
    gap: 16px;
}

.form-group.row-2 .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    color: var(--text-main);
    background-color: var(--bg-surface);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Card Actions & Checkbox */
.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}
.card-btn {
    background: transparent;
    border: none;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.card-btn.ignore {
    color: var(--text-muted);
}
.card-btn:hover {
    color: var(--primary-hover);
}
.card-btn.ignore:hover {
    color: var(--color-hot);
}

/* Framed styles for advance and downgrade buttons */
.card-btn.btn-advance, .card-btn.btn-downgrade {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}
.card-btn.btn-advance:hover, .card-btn.btn-downgrade:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary-hover);
}
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 12px;
    background-color: var(--bg-hover);
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}
.checkbox-wrapper:hover {
    border-color: var(--primary-light);
    background-color: var(--bg-surface);
}
.checkbox-wrapper input[type="checkbox"] {
    accent-color: var(--primary);
    width: 14px;
    height: 14px;
    cursor: pointer;
}
}

/* Employee Drawer Styles */
.emp-sidebar {
    width: 220px;
    border-right: 1px solid var(--border);
    background: var(--bg-hover);
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}
.emp-tab-btn {
    background: transparent;
    border: none;
    padding: 14px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border-right: 3px solid transparent;
}
.emp-tab-btn i {
    font-size: 18px;
}
.emp-tab-btn:hover {
    background: rgba(0,0,0,0.03);
    color: var(--text-main);
}
.emp-tab-btn.active {
    background: var(--primary-light);
    color: var(--primary);
    border-right-color: var(--primary);
}
/* School/Printable Calendar Style */
.calendar-school-container {
    background: white;
    border: 2px solid #3083C2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.calendar-school-header {
    background: #3083C2;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.calendar-school-grid {
    display: grid;
    grid-template-columns: 40px repeat(7, 1fr) 40px; /* N°, 7 days, A-B */
    flex: 1;
    background: white;
}

.calendar-school-head {
    background: #3083C2;
    color: white;
    padding: 10px 5px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid white;
}

.calendar-school-cell {
    border: 1px solid #CBD5E1;
    min-height: 100px;
    padding: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.calendar-school-cell.week-num, .calendar-school-cell.ab-col {
    background: #475569; /* Neutral Slate instead of blue */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.calendar-school-cell.other-month {
    background: #f1f5f9;
}

.calendar-school-day-num {
    font-weight: 800;
    font-size: 18px;
    color: #0F172A;
    margin-bottom: 4px;
}

.calendar-school-day-num.sunday, .calendar-school-day-num.saturday {
    color: #3083C2;
}

.calendar-school-indicators {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    gap: 4px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.indicator-dot.type-bureau { background: #3083C2; }
.indicator-dot.type-terrain { background: #F28C38; }
.indicator-dot.type-appel { background: #92C13E; }
.indicator-dot.type-video { background: #92C13E; }
.indicator-dot.type-tache { background: #92C13E; }

/* Legend / Filters */
.calendar-legend {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 2px solid #3083C2;
}

.legend-item {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s;
    border-right: 1px solid #CBD5E1;
}

.legend-item:last-child { border-right: none; }

.legend-item.active {
    opacity: 1;
}

.legend-item:not(.active) {
    opacity: 0.4;
}

.legend-box {
    padding: 8px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.legend-desc {
    font-size: 11px;
    color: var(--text-main);
    line-height: 1.3;
}

.calendar-sidebar {
    width: 320px;
    background: white;
    border-left: 1px solid var(--border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fab-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    background: #000000; /* Deep Black */
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background: #1a1a1a;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.fab-btn:active {
    transform: scale(0.9);
}
.calendar-staff-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: #F8FAFC;
    border-bottom: 2px solid #3083C2;
}

#staff-filter-select:hover {
    border-color: var(--primary);
    background-color: #f1f5f9;
}

/* Category Color Radios */
.color-radio {
    cursor: pointer;
    position: relative;
}
.color-radio input {
    position: absolute;
    opacity: 0;
}
.color-radio span {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 1px #E2E8F0;
    transition: all 0.2s;
}
.color-radio input:checked + span {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px var(--primary);
}

/* Toggle Switch for TVA */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
input:checked + .slider {
  background-color: #16A34A !important;
}
input:checked + .slider:before {
  transform: translateX(20px);
}

