@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #090d16;
    --bg-secondary: #121826;
    --bg-tertiary: #1b2336;
    --glass-bg: rgba(18, 24, 38, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.03);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --color-primary: #6366f1; /* Indigo */
    --color-primary-glow: rgba(99, 102, 241, 0.25);
    
    --color-success: #10b981; /* Emerald */
    --color-success-glow: rgba(16, 185, 129, 0.25);
    
    --color-warning: #f59e0b; /* Amber */
    --color-warning-glow: rgba(245, 158, 11, 0.25);
    
    --color-danger: #ef4444; /* Rose */
    --color-danger-glow: rgba(239, 68, 68, 0.25);
    
    --color-info: #0ea5e9; /* Sky Blue */
    --color-info-glow: rgba(14, 165, 233, 0.25);
    
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    filter: brightness(1.2);
}

/* Layout Shell */
.app-container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

@media (min-width: 769px) {
    .app-container {
        flex-direction: row;
    }
}

/* Sidebar (Desktop) */
.app-sidebar {
    width: 260px;
    background-color: var(--bg-secondary);
    border-right: 1px solid var(--glass-border);
    display: none;
    flex-direction: column;
    padding: 2rem 1.5rem;
    height: 100vh;
    position: sticky;
    top: 0;
}

@media (min-width: 769px) {
    .app-sidebar {
        display: flex;
    }
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.brand-logo {
    background: linear-gradient(135deg, var(--color-primary), var(--color-info));
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.brand-title {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-item a:hover, 
.nav-item.active a {
    background-color: var(--glass-highlight);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.nav-item.active a {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(14, 165, 233, 0.05));
    border-color: rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
}

.user-profile-widget {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 700;
    border: 2px solid var(--glass-border);
}

.user-info {
    flex-grow: 1;
    overflow: hidden;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.logout-btn {
    color: var(--color-danger);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
}

/* Mobile Header */
.mobile-header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

@media (min-width: 769px) {
    .mobile-header {
        display: none;
    }
}

.mobile-title {
    font-size: 1rem;
    font-weight: 700;
}

/* Bottom Navigation Bar (Mobile WebView Specific) */
.mobile-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom);
}

@media (min-width: 769px) {
    .mobile-nav-bar {
        display: none;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 500;
    gap: 3px;
    padding: 5px;
    min-width: 60px;
}

.mobile-nav-item.active {
    color: var(--color-primary);
}

.mobile-nav-icon {
    font-size: 1.25rem;
}

/* Content Area */
.app-content {
    flex-grow: 1;
    padding: 1.25rem;
    padding-bottom: 80px; /* space for mobile nav bar */
    overflow-y: auto;
    width: 100%;
}

@media (min-width: 769px) {
    .app-content {
        padding: 2rem;
        padding-bottom: 2rem;
    }
}

/* Auth Pages (Login) */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem;
    background: radial-gradient(circle at 10% 20%, rgb(18, 24, 38) 0%, rgb(9, 13, 22) 90%);
}

.auth-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: inline-flex;
    background: linear-gradient(135deg, var(--color-primary), var(--color-info));
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.auth-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Form Controls */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary-glow);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-height: 48px; /* Mobile touch target */
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #4f46e5);
    color: white;
    box-shadow: 0 4px 14px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-primary-glow);
}

.btn-success {
    background: linear-gradient(135deg, var(--color-success), #059669);
    color: white;
    box-shadow: 0 4px 14px var(--color-success-glow);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-success-glow);
}

.btn-danger {
    background: linear-gradient(135deg, var(--color-danger), #dc2626);
    color: white;
    box-shadow: 0 4px 14px var(--color-danger-glow);
}

.btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background-color: var(--glass-highlight);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    min-height: 38px;
}

/* Card layout */
.glass-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.glass-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.glass-card-title {
    font-size: 1.1rem;
    font-weight: 700;
}

/* KPI Stats cards grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
    .kpi-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.kpi-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--kpi-color, var(--color-primary));
}

.kpi-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.kpi-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Alerts / Notification banners */
.alert {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-priority-high {
    background-color: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-priority-medium {
    background-color: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-priority-low {
    background-color: rgba(14, 165, 233, 0.15);
    color: #7dd3fc;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.badge-status-completed {
    background-color: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-status-progress {
    background-color: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-status-pending {
    background-color: rgba(100, 116, 139, 0.15);
    color: #cbd5e1;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.badge-active {
    background-color: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
}

.badge-inactive {
    background-color: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
}

/* Tasks list layout (glowing list items) */
.task-item-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.task-item-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.task-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.task-item-title {
    font-size: 1rem;
    font-weight: 700;
}

.task-item-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.task-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    padding-top: 0.75rem;
}

.task-meta-group {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Custom tabs for Mobile WebView */
.tab-container {
    margin-bottom: 1rem;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
    flex: 1;
    text-align: center;
}

.tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Details Page specific components */
.detail-info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.detail-info-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-info-value {
    font-weight: 600;
}

/* Custom upload styles */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.01);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--color-primary);
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.file-upload-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.file-upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.image-preview {
    margin-top: 1rem;
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius-sm);
    display: none;
    border: 1px solid var(--glass-border);
    object-fit: cover;
}

/* Timeline/Activity Log View */
.timeline {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1.5rem - 6px);
    top: 0.25rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary-glow);
}

.timeline-item.completed::before {
    background-color: var(--color-success);
    box-shadow: 0 0 8px var(--color-success-glow);
}

.timeline-item.progress::before {
    background-color: var(--color-info);
    box-shadow: 0 0 8px var(--color-info-glow);
}

.timeline-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

/* Employee action switch */
.status-switch {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 2px;
}

.status-switch-btn {
    border: none;
    background: none;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
}

.status-switch-btn.active {
    background-color: var(--color-primary);
    color: white;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(9, 13, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.modal-backdrop.open .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Table styles */
.table-wrapper {
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.custom-table th {
    padding: 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--glass-border);
}

.custom-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.custom-table tr:hover {
    background-color: var(--glass-highlight);
}

/* Proof Photo Modal Lightbox */
.lightbox-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.proof-img-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.proof-img-thumb:hover {
    transform: scale(1.1);
    border-color: var(--color-primary);
}

/* Grid helper */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 769px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Pagination Styling */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

ul.pagination {
    display: inline-flex;
    list-style: none;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
}

ul.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.75rem;
    border-radius: var(--radius-sm);
    background-color: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

ul.pagination li a:hover {
    background-color: var(--color-primary-glow);
    border-color: var(--color-primary);
    color: #fff;
}

ul.pagination li.active a {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 10px var(--color-primary-glow);
}

ul.pagination li.disabled a {
    opacity: 0.4;
    pointer-events: none;
}

/* Notifications Bell & Dropdown styling */
.notification-dropdown {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px);
}

.notification-badge {
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

