:root {
    --bg-dark: #0f172a;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary: #004b8d;
    /* Stoper Blue */
    --primary-hover: #003666;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #f59e0b;
    --radius-lg: 24px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background */
.app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: drift 20s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #004b8d;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    bottom: -50px;
    right: -50px;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

/* Login */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.login-overlay.hidden {
    display: none;
}

.login-card {
    width: 400px;
    padding: 40px;
    text-align: center;
}

/* Main App */
.glass-container {
    width: 95vw;
    /* Wider for columns */
    height: 95vh;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Sidebar */
.sidebar {
    width: 260px;
    border-right: 1px solid var(--glass-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand {
    text-align: center;
}

.brand-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.user-profile-container {
    position: relative;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: 0.2s;
}

.user-profile:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Profile Dropdown */
.profile-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background: #1e293b;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 50;
}

.profile-dropdown.hidden {
    display: none;
}

.profile-dropdown button {
    background: none;
    border: none;
    color: white;
    padding: 12px;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-dropdown button:hover {
    background: rgba(255, 255, 255, 0.05);
}

.avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info span {
    font-size: 14px;
    font-weight: 500;
}

.status {
    font-size: 11px;
    color: var(--success);
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px;
    text-align: left;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
}

.nav-btn:hover,
.nav-btn.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.collaborators-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex: 1;
}

.collab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-main);
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
}

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

.top-bar {
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.header-text h2 {
    font-size: 24px;
}

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

.view-switcher {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: var(--radius-md);
    gap: 4px;
}

.view-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 12px;
}

.view-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.primary-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
}

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

/* Task List Views */
.task-list {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

/* Daily (Standard) */
.task-list.daily .task-group {
    margin-bottom: 24px;
}

.task-list.daily .group-header {
    font-size: 14px;
    color: var(--primary);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* Weekly (7 Cols) */
.task-list.weekly {
    display: grid;
    grid-template-columns: repeat(7, minmax(200px, 1fr));
    gap: 12px;
    align-items: start;
    overflow-x: auto;
}

.weekly-col {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.weekly-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
}

.weekly-tasks {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Monthly (Calendar) */
/* Monthly (Calendar) */
.task-list.monthly {
    padding: 0;
    height: 100%;
    /* Fill available space */
    overflow: hidden;
    /* Prevent page scroll */
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(auto-fill, minmax(100px, 1fr));
    /* Better row distribution */
    gap: 1px;
    /* Grid lines via gap */
    background: var(--glass-border);
    /* Color for gap lines */
    height: 100%;
}

.calendar-day {
    background: var(--bg-dark);
    /* Reset bg */
    padding: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Contain content */
    min-height: 0;
    /* Allow shrinking in flex/grid */
}

.calendar-day-header {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-bottom: 4px;
    padding: 2px 4px;
}

.calendar-day-content {
    flex: 1;
    overflow-y: auto;
    /* Scroll internally if many tasks */
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 2px;
}

/* Scrollbar for calendar days - thin and subtle */
.calendar-day-content::-webkit-scrollbar {
    width: 4px;
}

.calendar-day-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.calendar-day .task-item {
    font-size: 11px;
    padding: 6px 8px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calendar-day.empty {
    background: rgba(0, 0, 0, 0.3);
}

/* Task Items */
/* Task Items */
.task-item {
    background: #1e293b;
    border: 1px solid var(--glass-border);
    padding: 12px;
    padding-bottom: 16px;
    /* Space for time bar */
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    font-size: 13px;
    position: relative;
    transition: 0.2s;
    overflow: hidden;
    /* For time bar */
}

.time-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.time-progress-bar {
    height: 100%;
    background: var(--success);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.task-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.task-item.priority-high {
    border-left: 3px solid var(--danger);
}

.task-item.priority-medium {
    border-left: 3px solid var(--warning);
}

.task-item.priority-low {
    border-left: 3px solid var(--success);
}

/* Deadline Warnings */
.task-item.deadline-warning {
    border-right: 3px solid var(--warning);
}

.task-item.deadline-urgent {
    border-right: 3px solid #fb923c;
}

.task-item.deadline-critical {
    border-right: 3px solid var(--danger);
}

/* Progress Badge */
.progress-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 75, 141, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    z-index: 1;
}

.progress-badge.complete {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--success);
    color: var(--success);
}

.deadline-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.deadline-badge.warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.deadline-badge.urgent {
    background: rgba(251, 146, 60, 0.15);
    color: #fb923c;
}

.deadline-badge.critical {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

/* UI Refinements */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}



/* Grid View Task Expansion (Accordion + Scale) */
.weekly-tasks .task-item .task-desc,
.weekly-tasks .task-item .task-attachment,
.weekly-tasks .task-item .subtask-list,
.weekly-tasks .task-item .comments-section,
.weekly-tasks .task-item .task-footer,
.weekly-tasks .task-item .time-progress-container,
.calendar-day .task-item .task-desc,
.calendar-day .task-item .task-attachment,
.calendar-day .task-item .subtask-list,
.calendar-day .task-item .comments-section,
.calendar-day .task-item .task-footer,
.calendar-day .task-item .time-progress-container {
    display: none;
}

.weekly-tasks .task-item:hover,
.calendar-day .task-item:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    background: #1e293b;
    /* Ensure opacity */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.weekly-tasks .task-item:hover .task-desc,
.weekly-tasks .task-item:hover .task-attachment,
.weekly-tasks .task-item:hover .subtask-list,
.weekly-tasks .task-item:hover .comments-section,
.weekly-tasks .task-item:hover .task-footer,
.weekly-tasks .task-item:hover .time-progress-container,
.calendar-day .task-item:hover .task-desc,
.calendar-day .task-item:hover .task-attachment,
.calendar-day .task-item:hover .subtask-list,
.calendar-day .task-item:hover .comments-section,
.calendar-day .task-item:hover .task-footer,
.calendar-day .task-item:hover .time-progress-container {
    display: block;
    /* Show details */
    margin-top: 8px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness for Grid */
@media (max-width: 768px) {

    .calendar-grid,
    .task-list.weekly {
        display: flex;
        /* Stack on mobile */
        flex-direction: column;
        overflow-y: auto;
        /* Allow scroll on mobile */
    }

    .calendar-day,
    .weekly-col {
        min-height: auto;
        /* Content based height */
        padding: 12px;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    .calendar-day-content,
    .weekly-tasks {
        max-height: none;
        /* Expand fully */
        overflow: visible;
    }
}

.task-title {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.task-top .task-title-container {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    flex: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        display: block;
        overflow-y: auto;
    }

    .glass-container {
        width: 100%;
        height: auto;
        min-height: 100vh;
        border-radius: 0;
        flex-direction: column;
        border: none;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 16px;
    }

    .top-bar {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .header-text {
        text-align: center;
    }

    .view-switcher {
        justify-content: center;
        width: 100%;
    }

    .view-btn {
        flex: 1;
        text-align: center;
    }

    .task-list {
        padding: 16px;
    }

    .task-list.weekly,
    .calendar-grid {
        grid-template-columns: 1fr;
    }

    .weekly-col {
        min-height: auto;
    }
}

.task-item:hover .edit-btn {
    opacity: 1;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

.task-attachment {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 8px;
}

.task-attachment:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.hidden {
    display: none;
}

.modal {
    background: #1e293b;
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--radius-lg);
    width: 500px;
    box-shadow: var(--shadow);
    max-height: 90vh;
    overflow-y: auto;
}

.glass-modal {
    background: #1e293b;
}

.modal.sm {
    width: 360px;
}

.form-group {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

textarea,
input,
select {
    background: #0f172a;
    border: 1px solid var(--glass-border);
    padding: 10px;
    color: white;
    border-radius: 8px;
    width: 100%;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 60px;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary);
    border-color: transparent;
}

.priority-selector {
    display: flex;
    gap: 12px;
    background: #0f172a;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.priority-selector label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    color: white;
    text-transform: capitalize;
    font-weight: 400;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.secondary-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.secondary-btn:hover {
    color: white;
    border-color: white;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
}

/* Subtasks */
.subtasks-container {
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.subtask-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 6px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.subtask-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 4px;
}

.subtask-item input {
    width: 14px;
    height: 14px;
}

.subtask-input-row {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 6px;
}

.text-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
    text-align: left;
}

/* Toast */
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.toast {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* WhatsApp-Style Comments */
.comments-section {
    margin-top: 12px;
    border-top: 1px solid var(--glass-border);
    padding-top: 8px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 6px;
    transition: background 0.2s;
}

.comments-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.expand-icon {
    transition: transform 0.3s;
    font-size: 10px;
}

.comments-section.expanded .expand-icon {
    transform: rotate(180deg);
}

.comments-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.comments-section.expanded .comments-content {
    max-height: 400px;
    overflow-y: auto;
}

.comments-list {
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 60px;
}

.no-comments {
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    padding: 20px;
}

.comment-bubble {
    max-width: 75%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    animation: slideIn 0.2s ease-out;
}

.comment-bubble.own {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.comment-bubble.other {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    gap: 8px;
}

.comment-author {
    font-weight: 600;
    font-size: 10px;
    opacity: 0.9;
}

.comment-time {
    font-size: 9px;
    opacity: 0.7;
}

.comment-text {
    line-height: 1.4;
    word-wrap: break-word;
}

.comment-input-container {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 8px;
}

.comment-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 8px 12px;
    color: white;
    border-radius: 20px;
    font-size: 12px;
}

.comment-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.comment-send-btn {
    background: var(--primary);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s;
}

.comment-send-btn:hover {
    background: var(--primary-hover);
}

/* Notification Stack */
#notification-stack {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    max-width: 320px;
}

.notification-card {
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    animation: slideInRight 0.3s ease-out;
    transition: transform 0.2s, opacity 0.3s;
}

.notification-card:hover {
    transform: translateX(-5px);
    background: rgba(30, 41, 59, 1);
}

.notif-icon {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.notif-content {
    flex: 1;
}

.notif-text {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 4px;
}

.notif-time {
    font-size: 11px;
    color: var(--text-muted);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.empty-state {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
}