/* ==========================================================================
   CSS CUSTOM VARIABLES (THEMING & DESIGN TOKENS)
   ========================================================================== */
:root {
    /* Fonts */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-header: 'Outfit', var(--font-primary);

    /* Transition Speeds */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Borders & Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Layout Sizes */
    --header-height: 80px;
    --sidebar-width: 260px;
    --max-width: 1400px;
}

/* --- Dark Theme Variables --- */
body.dark-theme {
    --bg-app: #0b0f19;
    --bg-surface: #131b2e;
    --bg-surface-hover: #1e2942;
    --bg-panel: #1b253b;
    --border-color: #24314f;
    --border-color-hover: #33466f;
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: rgba(99, 102, 241, 0.15);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px -2px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 0 4px 12px -5px rgba(0, 0, 0, 0.4);
    
    /* Status Colors */
    --status-todo: #64748b;
    --status-todo-light: rgba(100, 116, 139, 0.15);
    --status-inprogress: #3b82f6;
    --status-inprogress-light: rgba(59, 130, 246, 0.15);
    --status-review: #f59e0b;
    --status-review-light: rgba(245, 158, 11, 0.15);
    --status-done: #10b981;
    --status-done-light: rgba(16, 185, 129, 0.15);
    
    /* Priority Colors */
    --priority-low: #10b981;
    --priority-medium: #f59e0b;
    --priority-high: #ef4444;
    
    /* Overdue indicators */
    --overdue-bg: rgba(239, 68, 68, 0.12);
    --overdue-text: #fca5a5;
    --overdue-border: #ef4444;
}

/* --- Light Theme Variables --- */
body:not(.dark-theme) {
    --bg-app: #f4f6fa;
    --bg-surface: #ffffff;
    --bg-surface-hover: #f8fafc;
    --bg-panel: #f8fafc;
    --border-color: #e2e8f0;
    --border-color-hover: #cbd5e1;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --primary: #4f46e5;
    --primary-hover: #3730a3;
    --primary-light: rgba(79, 70, 229, 0.1);
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 18px -4px rgba(79, 70, 229, 0.08), 0 2px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 24px -6px rgba(79, 70, 229, 0.12), 0 8px 16px -8px rgba(0, 0, 0, 0.04);
    
    /* Status Colors */
    --status-todo: #475569;
    --status-todo-light: rgba(71, 85, 105, 0.1);
    --status-inprogress: #2563eb;
    --status-inprogress-light: rgba(37, 99, 235, 0.1);
    --status-review: #d97706;
    --status-review-light: rgba(217, 119, 6, 0.1);
    --status-done: #059669;
    --status-done-light: rgba(5, 150, 105, 0.1);
    
    /* Priority Colors */
    --priority-low: #059669;
    --priority-medium: #d97706;
    --priority-high: #dc2626;
    
    /* Overdue indicators */
    --overdue-bg: rgba(220, 38, 38, 0.06);
    --overdue-text: #b91c1c;
    --overdue-border: #dc2626;
}

/* ==========================================================================
   GLOBAL RESET & STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-app);
    color: var(--text-primary);
    line-height: 1.5;
    transition: background-color var(--transition-slow), color var(--transition-slow);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.app-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.app-header {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
    transition: border-color var(--transition-slow);
}

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

.logo-icon {
    background: var(--gradient-primary);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.logo-text h1 {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-switcher-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-switcher-container label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ==========================================================================
   INPUTS & BUTTONS (PREMIUM STYLING)
   ========================================================================== */
.premium-select {
    font-family: var(--font-primary);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.premium-select:hover {
    border-color: var(--border-color-hover);
}

.premium-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.premium-input {
    font-family: var(--font-primary);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
}

.premium-input:hover {
    border-color: var(--border-color-hover);
}

.premium-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Buttons */
.primary-button {
    font-family: var(--font-primary);
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.25);
    transition: transform var(--transition-fast), opacity var(--transition-fast), box-shadow var(--transition-fast);
}

.primary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
    opacity: 0.95;
}

.primary-button:active {
    transform: translateY(1px);
}

.secondary-button {
    font-family: var(--font-primary);
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.secondary-button:hover {
    background-color: var(--bg-surface-hover);
    color: var(--text-primary);
    border-color: var(--border-color-hover);
}

.icon-button {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.icon-button:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
    border-color: var(--border-color-hover);
}

/* Switch Theme Icon Handling */
#theme-toggle .sun-icon {
    display: none;
}
#theme-toggle .moon-icon {
    display: block;
}
body.dark-theme #theme-toggle .sun-icon {
    display: block;
    color: #f59e0b;
}
body.dark-theme #theme-toggle .moon-icon {
    display: none;
}

/* ==========================================================================
   VIEW/SECTION COMMON STYLES
   ========================================================================== */
.view-section {
    animation: fadeIn var(--transition-normal);
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-family: var(--font-header);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

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

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
}

/* ==========================================================================
   1. MANAGER DASHBOARD VIEW
   ========================================================================== */

/* Metrics Summary Cards */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.metric-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), border-color var(--transition-normal);
}

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

.metric-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-panel);
}

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

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

.metric-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-header);
    line-height: 1.2;
}

/* Accent lines on metric cards */
.card-total { border-left: 4px solid var(--primary); }
.card-todo { border-left: 4px solid var(--status-todo); }
.card-progress { border-left: 4px solid var(--status-inprogress); }
.card-done { border-left: 4px solid var(--status-done); }
.card-overdue { border-left: 4px solid var(--priority-high); }

/* Visual Breakdown Progress Bars */
.dashboard-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .dashboard-breakdown {
        grid-template-columns: 1fr;
    }
}

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

.breakdown-card h3 {
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.progress-bar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bar-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
}

.bar-name {
    color: var(--text-primary);
}

.bar-count {
    color: var(--text-secondary);
    font-weight: 600;
}

.bar-track {
    background-color: var(--border-color);
    height: 10px;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width var(--transition-slow);
}

/* ==========================================================================
   TASKS TABLE (MANAGER VIEW)
   ========================================================================== */
.tasks-table-container {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.table-header-controls {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.table-header-controls h3 {
    font-family: var(--font-header);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.search-group {
    flex-grow: 1;
    min-width: 200px;
}

.table-scroll-wrapper {
    overflow-x: auto;
    width: 100%;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.premium-table th {
    background-color: var(--bg-panel);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.premium-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    vertical-align: middle;
}

.premium-table tbody tr {
    transition: background-color var(--transition-fast);
}

.premium-table tbody tr:hover {
    background-color: var(--bg-surface-hover);
}

/* Actions column styling */
.actions-col {
    width: 120px;
    text-align: right;
}

.table-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* Empty states */
.empty-state-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state-text {
    font-size: 15px;
    font-weight: 500;
}

/* ==========================================================================
   2. TEAM KANBAN BOARD VIEW
   ========================================================================== */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    min-height: 550px;
}

@media (max-width: 1024px) {
    .kanban-board {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .kanban-board {
        grid-template-columns: 1fr;
    }
}

.kanban-column {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    max-height: 750px;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-normal);
}

.kanban-column:hover {
    border-color: var(--border-color-hover);
}

.column-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.column-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.dot-todo { background-color: var(--status-todo); }
.dot-inprogress { background-color: var(--status-inprogress); }
.dot-review { background-color: var(--status-review); }
.dot-done { background-color: var(--status-done); }

.column-header h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    flex-grow: 1;
}

.column-count {
    background-color: var(--border-color);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Kanban column body (drag target) */
.column-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 350px;
    overflow-y: auto;
    padding-bottom: 20px;
    /* Custom thin scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.column-body::-webkit-scrollbar {
    width: 6px;
}
.column-body::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: var(--radius-full);
}

/* When column is dragging hover target */
.column-body.drag-hover {
    background-color: var(--bg-surface-hover);
    border-radius: var(--radius-sm);
    outline: 2px dashed var(--primary);
    outline-offset: -2px;
}

/* ==========================================================================
   TASK CARD (KANBAN / DASHBOARD LIST)
   ========================================================================== */
.task-card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    cursor: grab;
    user-select: none;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

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

.task-card:active {
    cursor: grabbing;
}

/* Dragging state of card */
.task-card.dragging {
    opacity: 0.4;
    border: 2px dashed var(--primary);
}

/* Priority Accent indicators */
.task-card.priority-high { border-left: 3px solid var(--priority-high); }
.task-card.priority-medium { border-left: 3px solid var(--priority-medium); }
.task-card.priority-low { border-left: 3px solid var(--priority-low); }

/* Card Content Structure */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-word;
}

.card-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

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

/* Badges styling */
.badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-priority-high { background-color: rgba(239, 68, 68, 0.15); color: #f87171; }
.badge-priority-medium { background-color: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.badge-priority-low { background-color: rgba(16, 185, 129, 0.15); color: #34d399; }

.badge-user {
    background-color: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

/* Card footer details */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 8px;
}

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

.card-date.overdue {
    color: var(--priority-high);
    font-weight: 600;
}

/* Micro-actions on Card */
.card-actions {
    display: flex;
    gap: 4px;
}

.card-action-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.btn-delete:hover {
    background-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

/* Overdue banner inside Card */
.overdue-alert {
    background-color: var(--overdue-bg);
    color: var(--overdue-text);
    border: 1px solid var(--overdue-border);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    animation: pulse 2s infinite;
}

/* ==========================================================================
   STATUS BADGES (TABLE)
   ========================================================================== */
.status-pill {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.status-todo { background-color: var(--status-todo-light); color: var(--status-todo); }
.status-inprogress { background-color: var(--status-inprogress-light); color: var(--status-inprogress); }
.status-review { background-color: var(--status-review-light); color: var(--status-review); }
.status-done { background-color: var(--status-done-light); color: var(--status-done); }

/* ==========================================================================
   MODAL OVERLAY & CARD (ADD / EDIT)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity var(--transition-normal);
}

.modal-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 580px;
    box-shadow: var(--shadow-lg);
    animation: modalSlideUp var(--transition-normal);
    overflow: hidden;
}

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

.modal-header h2 {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 700;
}

.modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

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

.required-field::after {
    content: " *";
    color: var(--priority-high);
}

.form-row {
    display: flex;
    gap: 16px;
}

.half-width {
    flex: 1;
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 18px;
    }
}

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

/* Helper Utilities */
.hidden {
    display: none !important;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { opacity: 0.95; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { opacity: 1; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { opacity: 0.95; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
