/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --critical-color: #dc2626;
    --high-color: #f97316;
    --medium-color: #3b82f6;
    --low-color: #6b7280;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header h1 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #475569;
}

.btn-success {
    background-color: var(--success-color);
    color: white;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-logout {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-logout:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-block {
    width: 100%;
}

/* Main Container */
.main-container {
    padding: 2rem 0;
    min-height: calc(100vh - 100px);
}

/* Action Bar */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filters select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    font-size: 0.95rem;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.stat-icon.critical { background-color: var(--critical-color); }
.stat-icon.high { background-color: var(--high-color); }
.stat-icon.pending { background-color: var(--warning-color); }
.stat-icon.completed { background-color: var(--success-color); }

.stat-info h3 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-primary);
}

.stat-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Notices Grid */
.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.notice-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.notice-card.priority-critical { border-left-color: var(--critical-color); }
.notice-card.priority-high { border-left-color: var(--high-color); }
.notice-card.priority-medium { border-left-color: var(--medium-color); }
.notice-card.priority-low { border-left-color: var(--low-color); }

.notice-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.notice-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.notice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-critical { background-color: #fee2e2; color: var(--critical-color); }
.badge-high { background-color: #ffedd5; color: var(--high-color); }
.badge-medium { background-color: #dbeafe; color: var(--medium-color); }
.badge-low { background-color: #f3f4f6; color: var(--low-color); }

.badge-pending { background-color: #fef3c7; color: #92400e; }
.badge-in_progress { background-color: #dbeafe; color: #1e40af; }
.badge-completed { background-color: #d1fae5; color: #065f46; }

.notice-body {
    padding: 1.25rem;
}

.notice-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.notice-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.date-overdue {
    color: var(--danger-color);
    font-weight: 600;
}

.date-upcoming {
    color: var(--warning-color);
}

.date-normal {
    color: var(--text-secondary);
}

.attachments {
    margin-top: 1rem;
}

.attachments-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.attachment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attachment-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-color);
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.attachment-item:hover {
    background-color: #e2e8f0;
}

.notice-footer {
    padding: 1rem 1.25rem;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
}

.notice-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--card-bg);
    margin: 2% auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.close {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--danger-color);
}

/* Forms */
form {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Auth Pages */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.auth-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.auth-card h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid var(--danger-color);
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--success-color);
}

/* Loading Spinner */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.25rem;
    }
    
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .action-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters {
        flex-direction: column;
    }
    
    .filters select {
        width: 100%;
    }
    
    .notices-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .notice-footer {
        flex-direction: column;
    }
    
    .notice-actions {
        width: 100%;
    }
    
    .notice-actions .btn {
        flex: 1;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 0;
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .auth-card {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}


/* Enhanced Notice Board Styles with Compact View */

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transition: bottom 0.3s ease;
    min-width: 250px;
}

.toast.show {
    bottom: 20px;
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-success i {
    color: #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error i {
    color: #ef4444;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info i {
    color: #3b82f6;
}

/* View Toggle Button */
.view-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

#viewToggleBtn {
    padding: 8px 16px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

#viewToggleBtn:hover {
    background: #e5e7eb;
}

/* Compact View Styles */
.notices-grid.compact-view {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice-compact {
    background: white;
    border-radius: 8px;
    border-left: 4px solid #d1d5db;
    overflow: hidden;
    transition: all 0.2s;
}

.notice-compact.priority-critical {
    border-left-color: #dc2626;
}

.notice-compact.priority-high {
    border-left-color: #f59e0b;
}

.notice-compact.priority-medium {
    border-left-color: #3b82f6;
}

.notice-compact.priority-low {
    border-left-color: #10b981;
}

.compact-header {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: background 0.2s;
}

.compact-header:hover {
    background: #f9fafb;
}

.compact-header:active {
    background: #f3f4f6;
}

.compact-main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.expand-icon {
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.compact-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.compact-badges .badge {
    font-size: 11px;
    padding: 3px 8px;
}

.compact-date {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f3f4f6;
}

.compact-date.date-overdue {
    background: #fee2e2;
    color: #dc2626;
}

.compact-date.date-upcoming {
    background: #fef3c7;
    color: #d97706;
}

.compact-date.date-normal {
    background: #dbeafe;
    color: #2563eb;
}

.attachment-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #f3f4f6;
    color: #6b7280;
}

.compact-content {
    border-top: 1px solid #f3f4f6;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.compact-details {
    padding: 16px;
}

.compact-description {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.compact-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.compact-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.compact-attachments {
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compact-attachment {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f9fafb;
    border-radius: 6px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e5e7eb;
}

.compact-attachment:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.compact-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.btn-icon {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: #f9fafb;
}

.btn-icon.btn-edit {
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-icon.btn-edit:hover {
    background: #eff6ff;
}

.btn-icon.btn-complete {
    color: #10b981;
    border-color: #10b981;
}

.btn-icon.btn-complete:hover {
    background: #ecfdf5;
}

.btn-icon.btn-delete {
    color: #ef4444;
    border-color: #ef4444;
}

.btn-icon.btn-delete:hover {
    background: #fef2f2;
}

/* Existing Attachments in Edit Form */
.existing-attachments-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.existing-attachment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.existing-attachment-item i {
    color: #6b7280;
}

.existing-attachment-item span {
    flex: 1;
    font-size: 14px;
    color: #374151;
}

.btn-icon-small {
    padding: 4px 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.btn-delete-attachment {
    color: #ef4444;
}

.btn-delete-attachment:hover {
    background: #fee2e2;
}

.text-muted {
    color: #9ca3af;
    font-size: 14px;
    font-style: italic;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .action-bar {
        flex-direction: column;
        gap: 12px;
    }
    
    .filters {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .view-toggle {
        width: 100%;
    }
    
    #viewToggleBtn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compact-header {
        padding: 10px 12px;
    }
    
    .compact-title {
        font-size: 14px;
    }
    
    .compact-badges {
        display: none;
    }
    
    .compact-header:active .compact-badges {
        display: flex;
    }
    
    .compact-details {
        padding: 12px;
    }
    
    .compact-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .toast {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .toast.show {
        bottom: 10px;
    }
    
    /* Make card view more compact on mobile too */
    .notices-grid.card-view .notice-card {
        margin-bottom: 12px;
    }
    
    .notice-card {
        padding: 12px;
    }
    
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .notice-meta {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 18px;
    }
    
    .user-info {
        font-size: 13px;
    }
    
    .btn-logout {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .stats-grid {
        gap: 8px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-info h3 {
        font-size: 22px;
    }
    
    .stat-info p {
        font-size: 12px;
    }
    
    .compact-main {
        gap: 8px;
    }
    
    .compact-title {
        font-size: 13px;
    }
    
    .compact-actions {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .btn-icon {
        padding: 10px;
        font-size: 14px;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 8px 0;
    }
    
    .stats-grid {
        display: none;
    }
    
    .action-bar {
        padding: 8px 0;
    }
}

/* Smooth transitions for all interactive elements */
* {
    -webkit-tap-highlight-color: transparent;
}

button, a, .compact-header {
    touch-action: manipulation;
}

/* Pull to refresh indicator space */
body {
    overscroll-behavior-y: contain;
}

/* Better touch targets */
.btn-icon, .compact-header, button {
    min-height: 44px;
    min-width: 44px;
}

/* Improved modal on mobile */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .form-actions {
        position: sticky;
        bottom: 0;
        background: white;
        padding-top: 16px;
        border-top: 1px solid #e5e7eb;
        margin-top: 16px;
    }
}

/* Loading states */
.btn-icon:disabled, button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Skeleton loading for compact view */
.compact-skeleton {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    height: 20px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Accessibility improvements */
.compact-header:focus,
.btn-icon:focus,
button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    body {
        background: #111827;
        color: #f9fafb;
    }
    
    .notice-compact,
    .notice-card {
        background: #1f2937;
        border-color: #374151;
    }
    
    .compact-header:hover {
        background: #374151;
    }
    
    .compact-title {
        color: #f9fafb;
    }
    
    .compact-description {
        color: #d1d5db;
    }
    
    .btn-icon {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    .toast {
        background: #1f2937;
        color: #f9fafb;
    }
}