/* MENKAS Online Research Task Management System - Responsive UI */

:root {
    --primary-color: #2457ff;
    --primary-hover: #1846d6;
    --secondary-color: #0f172a;
    --success-color: #16a34a;
    --danger-color: #dc2626;
    --warning-color: #d97706;
    --info-color: #0f77ff;
    --page-bg: #eef3fb;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-solid: #ffffff;
    --surface-muted: #f8fbff;
    --text-color: #1f2937;
    --text-muted: #64748b;
    --border-color: #d9e2f2;
    --shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 16px 30px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.16);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --header-height: 72px;
}

html.dark-mode {
    --page-bg: #0b1220;
    --surface: rgba(15, 23, 42, 0.9);
    --surface-solid: #111827;
    --surface-muted: #0f172a;
    --text-color: #e5eefb;
    --text-muted: #93a4bd;
    --border-color: #24324a;
    --shadow-sm: 0 6px 16px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 16px 30px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.36);
    color-scheme: dark;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Trebuchet MS", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background:
        radial-gradient(circle at top left, rgba(36, 87, 255, 0.12), transparent 35%),
        radial-gradient(circle at top right, rgba(22, 163, 74, 0.10), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, var(--page-bg) 100%);
    line-height: 1.55;
    overflow-x: hidden;
}

html.dark-mode body {
    background:
        radial-gradient(circle at top left, rgba(36, 87, 255, 0.16), transparent 35%),
        radial-gradient(circle at top right, rgba(22, 163, 74, 0.12), transparent 32%),
        linear-gradient(180deg, #0f172a 0%, var(--page-bg) 100%);
}

body.nav-open {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 40%);
    opacity: 0.6;
    z-index: -1;
}

img, svg, video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

main {
    padding: 1.5rem 0 2rem;
}

footer {
    padding: 1rem 0 1.75rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(217, 226, 242, 0.85);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

html.dark-mode header {
    background: rgba(15, 23, 42, 0.88);
    border-bottom-color: rgba(36, 50, 74, 0.9);
}

nav {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    white-space: nowrap;
}

.logo::before {
    content: '◆';
    font-size: 0.8rem;
    color: #8ab4ff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.75rem 1rem;
    list-style: none;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--primary-color);
    background: rgba(36, 87, 255, 0.10);
    transform: translateY(-1px);
}

.theme-toggle,
.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid var(--border-color);
    background: var(--surface-solid);
    color: var(--text-color);
    border-radius: 999px;
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.theme-toggle:hover,
.menu-toggle:hover,
.theme-toggle:focus-visible,
.menu-toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: rgba(36, 87, 255, 0.35);
}

.theme-toggle {
    font-size: 1.05rem;
}

.menu-toggle {
    display: none;
    font-size: 0.95rem;
    font-weight: 700;
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.55rem 1rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--danger-color), #ef4444);
    color: white;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-logout:hover,
.btn-logout:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.02);
}

/* Layout */
.grid-container {
    display: grid;
    grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.main-content {
    min-width: 0;
}

.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}

.sidebar ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.sidebar li {
    margin: 0;
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sidebar a:hover,
.sidebar a:focus-visible,
.sidebar a.active {
    background: linear-gradient(135deg, rgba(36, 87, 255, 0.12), rgba(36, 87, 255, 0.05));
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(36, 87, 255, 0.12);
    transform: translateX(2px);
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    z-index: 950;
}

body.nav-open .sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* Cards */
.card,
.form-section,
.login-box {
    background: var(--surface);
    border: 1px solid rgba(217, 226, 242, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.card {
    padding: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.95rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.card-header h2 {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--text-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    position: relative;
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,251,255,0.96));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

html.dark-mode .stat-card {
    background: linear-gradient(180deg, rgba(17,24,39,0.96), rgba(15,23,42,0.96));
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: auto -24px -24px auto;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 87, 255, 0.18), transparent 68%);
    pointer-events: none;
}

.stat-card h3 {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

.stat-card .value {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
}

/* Forms */
form {
    width: 100%;
    max-width: 100%;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--text-color);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: var(--surface-solid);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(36, 87, 255, 0.6);
    box-shadow: 0 0 0 4px rgba(36, 87, 255, 0.12);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #9aa9bf;
}

input:disabled,
select:disabled,
textarea:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    background: rgba(148, 163, 184, 0.12);
    color: var(--text-muted);
}

html.dark-mode input:disabled,
html.dark-mode select:disabled,
html.dark-mode textarea:disabled {
    background: rgba(148, 163, 184, 0.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 46px;
    padding: 0.8rem 1.15rem;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #22c55e);
    color: white;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #ef4444);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #f59e0b);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
}

.btn-small {
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    font-size: 0.88rem;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn:disabled {
    background: #cbd5e1;
    color: #64748b;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transform: none;
}

html.dark-mode .btn:disabled {
    background: #334155;
    color: #94a3b8;
}

/* Alerts */
.alert {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
    border-color: rgba(22, 163, 74, 0.18);
}

.alert-error {
    background: rgba(220, 38, 38, 0.12);
    color: #991b1b;
    border-color: rgba(220, 38, 38, 0.18);
}

.alert-warning {
    background: rgba(217, 119, 6, 0.12);
    color: #92400e;
    border-color: rgba(217, 119, 6, 0.18);
}

.alert-info {
    background: rgba(15, 119, 255, 0.12);
    color: #1d4ed8;
    border-color: rgba(15, 119, 255, 0.18);
}

html.dark-mode .alert-success {
    color: #bbf7d0;
}

html.dark-mode .alert-error {
    color: #fecaca;
}

html.dark-mode .alert-warning {
    color: #fde68a;
}

html.dark-mode .alert-info {
    color: #bfdbfe;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 0;
    overflow-x: auto;
    display: block;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: var(--surface-solid);
    box-shadow: var(--shadow-sm);
}

.table thead,
.table tbody {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.table thead {
    background: rgba(36, 87, 255, 0.06);
}

.table th,
.table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
    word-break: break-word;
}

.table th {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background: rgba(36, 87, 255, 0.04);
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid transparent;
}

.status-pending,
.status-missing {
    background: rgba(217, 119, 6, 0.12);
    color: #92400e;
    border-color: rgba(217, 119, 6, 0.18);
}

.status-approved {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
    border-color: rgba(22, 163, 74, 0.18);
}

.status-rejected {
    background: rgba(220, 38, 38, 0.12);
    color: #991b1b;
    border-color: rgba(220, 38, 38, 0.18);
}

.status-approved_at,
.status-processed {
    background: rgba(15, 119, 255, 0.12);
    color: #1d4ed8;
    border-color: rgba(15, 119, 255, 0.18);
}

html.dark-mode .status-pending,
html.dark-mode .status-missing {
    color: #fde68a;
}

html.dark-mode .status-approved {
    color: #bbf7d0;
}

html.dark-mode .status-rejected {
    color: #fecaca;
}

html.dark-mode .status-approved_at,
html.dark-mode .status-processed {
    color: #bfdbfe;
}

/* Login Page */
.login-container {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.10), transparent 24%),
        linear-gradient(135deg, #2748ff 0%, #5d5de8 45%, #8f5bd8 100%);
}

.login-box {
    width: min(100%, 430px);
    padding: clamp(1.3rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.26);
    position: relative;
    overflow: hidden;
}

.login-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 42%);
    pointer-events: none;
}

.login-box h1 {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(1.55rem, 3.8vw, 2rem);
    letter-spacing: 0.01em;
}

html.dark-mode .login-box h1 {
    color: #93c5fd;
}

.login-box hr {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 1.25rem 0;
}

html.dark-mode .login-box {
    border-color: rgba(148, 163, 184, 0.16);
}

/* Utility blocks */
.info-box,
.success-box {
    border-radius: 16px;
    padding: 0.95rem 1rem;
    margin: 1rem 0;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.info-box {
    background: rgba(15, 119, 255, 0.08);
    color: var(--text-color);
}

.success-box {
    background: rgba(22, 163, 74, 0.10);
    color: inherit;
}

.form-section {
    padding: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: 1rem;
}

.form-section.verified {
    border-color: rgba(22, 163, 74, 0.22);
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.08);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    margin-left: 0.5rem;
    background: var(--success-color);
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
}

.withdrawal-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.85rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem;
    background: rgba(148, 163, 184, 0.08);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.14);
}

.info-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 800;
}

.info-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
}

.amount {
    color: var(--success-color);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.button-group button,
.button-group a {
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 14px;
}

/* Responsive behavior */
@media (max-width: 1100px) {
    .grid-container {
        grid-template-columns: minmax(210px, 240px) minmax(0, 1fr);
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

/* Transform tables into stacked cards on very small screens while preserving scroll on larger small devices */
@media (max-width: 720px) {
    .table {
        display: block;
        border-radius: 12px;
        padding: 0.4rem;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .table thead {
        display: none;
    }

    .table tbody {
        display: block;
        width: 100%;
    }

    .table tbody tr {
        display: block;
        background: var(--surface);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 0.7rem;
        margin-bottom: 0.75rem;
        box-shadow: var(--shadow-sm);
    }

    .table td {
        display: flex;
        width: 100%;
        padding: 0.45rem 0.45rem;
        border: none;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .table td::before {
        content: attr(data-label);
        font-weight: 800;
        color: var(--text-muted);
        font-size: 0.78rem;
        display: block;
        min-width: 45%;
    }

    .table td > *:last-child {
        text-align: right;
    }

    .table tbody tr:hover {
        transform: translateY(-1px);
    }
}

/* For slightly larger small screens, allow horizontal scrolling but keep table compact */
@media (max-width: 900px) and (min-width: 721px) {
    .table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        min-width: 0;
    }
}

@media (max-width: 900px) {
    nav {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        top: calc(var(--header-height) + 0.75rem);
        left: 0.75rem;
        width: min(320px, calc(100vw - 1.5rem));
        max-height: calc(100vh - var(--header-height) - 1.5rem);
        overflow-y: auto;
        z-index: 960;
        transform: translateX(-110%);
        transition: transform 0.24s ease, opacity 0.24s ease;
        opacity: 0;
    }

    body.nav-open .sidebar {
        transform: translateX(0);
        opacity: 1;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .withdrawal-info {
        grid-template-columns: 1fr;
    }

    .table {
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 20px, 100%);
    }

    main {
        padding-top: 1rem;
    }

    nav {
        align-items: flex-start;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-links {
        gap: 0.5rem;
    }

    .nav-links li {
        font-size: 0.88rem;
    }

    .theme-toggle,
    .menu-toggle,
    .btn-logout {
        min-height: 40px;
        padding-inline: 0.85rem;
    }

    .card,
    .login-box,
    .form-section {
        border-radius: 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn-group,
    .button-group {
        flex-direction: column;
    }

    .btn,
    .button-group button,
    .button-group a {
        width: 100%;
    }

    .table {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 16px, 100%);
    }

    header {
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .card,
    .form-section,
    .login-box {
        padding: 1rem;
    }

    .stat-card {
        padding: 0.9rem;
    }

    .stat-card .value {
        font-size: 1.35rem;
    }

    .alert {
        padding: 0.85rem 0.9rem;
        border-radius: 14px;
    }

    .sidebar {
        left: 0.5rem;
        width: calc(100vw - 1rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
