:root {
    --bg-main: #050a14;
    --bg-main-alt: #08111f;
    --bg-canvas: #0b1528;
    --bg-panel: rgba(11, 19, 35, 0.82);
    --bg-panel-strong: rgba(12, 22, 40, 0.94);
    --bg-sidebar: linear-gradient(180deg, #050913 0%, #071120 56%, #081526 100%);
    --bg-soft: #111d33;

    --text-main: #f5f7fb;
    --text-muted: #8ea3c4;
    --text-soft: #c8d5e8;

    --accent: #38bdf8;
    --accent-2: #2563eb;
    --accent-hover: #1da7f0;
    --accent-glow: rgba(56, 189, 248, 0.2);
    --accent-soft: rgba(56, 189, 248, 0.1);
    --accent-border: rgba(56, 189, 248, 0.24);

    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --neutral: #64748b;

    --border: rgba(120, 146, 190, 0.16);
    --border-soft: rgba(148, 163, 184, 0.08);
    --border-strong: rgba(56, 189, 248, 0.18);

    --shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.24);
    --shadow-glow: 0 0 0 1px rgba(56, 189, 248, 0.05), 0 12px 32px rgba(2, 132, 199, 0.08);

    --radius: 18px;
    --radius-sm: 12px;
    --radius-pill: 999px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg-main);
}

body {
    margin: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 14% 0%, rgba(56, 189, 248, 0.1), transparent 22%),
        radial-gradient(circle at 100% 8%, rgba(37, 99, 235, 0.12), transparent 24%),
        linear-gradient(180deg, var(--bg-main) 0%, var(--bg-main-alt) 44%, #070e19 100%);
    color: var(--text-main);
    line-height: 1.45;
}

a {
    text-decoration: none;
}

h1, h2, h3 {
    letter-spacing: -0.03em;
}

.layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 268px;
    background: var(--bg-sidebar);
    border-right: 1px solid rgba(56, 189, 248, 0.1);
    padding: 22px 16px;
    box-shadow:
        inset -1px 0 0 rgba(255,255,255,0.015),
        10px 0 24px rgba(0, 0, 0, 0.18);
    position: relative;
}

.sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(56, 189, 248, 0.05), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0.01), transparent 18%);
    pointer-events: none;
}

.brand {
    position: relative;
    z-index: 1;
}

.brand h1 {
    margin: 0;
    font-size: 26px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
}

.brand p {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.2;
}

.nav {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.nav a {
    color: #d8e2f1;
    padding: 11px 12px;
    border-radius: 12px;
    transition: 0.18s ease;
    background: transparent;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
}

.nav a:hover {
    background: rgba(56, 189, 248, 0.06);
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.1);
    transform: translateX(1px);
}

.nav a.active {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.12) 0%, rgba(37, 99, 235, 0.12) 100%);
    color: #ffffff;
    font-weight: 700;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 8px 18px rgba(2, 132, 199, 0.1);
}

.logout-link {
    margin-top: 12px;
    color: #fca5a5 !important;
}

.main-content {
    flex: 1;
    padding: 22px 24px 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.07), transparent 20%),
        radial-gradient(circle at 60% 18%, rgba(37, 99, 235, 0.06), transparent 22%),
        linear-gradient(180deg, #07101d 0%, #081121 48%, #060d18 100%);
}

.topbar {
    margin-bottom: 18px;
}

.topbar h2 {
    margin: 0;
    font-size: 28px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.08;
}

.subtitle {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.page-content {
    width: 100%;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.metric-card {
    background: linear-gradient(180deg, rgba(15, 24, 43, 0.96) 0%, rgba(9, 17, 33, 0.96) 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.metric-label {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.metric-card h3 {
    margin: 0;
    font-size: 26px;
    color: #ffffff;
    line-height: 1.1;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.panel {
    background: linear-gradient(180deg, rgba(13, 22, 40, 0.84) 0%, rgba(8, 16, 31, 0.92) 100%);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.panel h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
}

.clean-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-soft);
}

.clean-list li {
    margin-bottom: 8px;
}

.action-grid {
    display: grid;
    gap: 10px;
}

.action-btn {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1da7f0 0%, #2563eb 100%);
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    border: 1px solid rgba(125, 211, 252, 0.18);
    box-shadow: 0 8px 18px rgba(2, 132, 199, 0.18), inset 0 1px 0 rgba(255,255,255,0.09);
    transition: 0.18s ease;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.24), inset 0 1px 0 rgba(255,255,255,0.12);
    filter: brightness(1.03);
}

.login-page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top center, rgba(56, 189, 248, 0.12), transparent 28%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.12), transparent 24%),
        linear-gradient(180deg, #050a14 0%, #081121 100%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, rgba(14, 24, 44, 0.92) 0%, rgba(8, 16, 31, 0.94) 100%);
    border: 1px solid rgba(56, 189, 248, 0.12);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(56, 189, 248, 0.04);
    backdrop-filter: blur(12px);
}

.login-brand {
    text-align: center;
    margin-bottom: 22px;
}

.login-brand h1 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
}

.login-brand p {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.login-form {
    display: grid;
    gap: 14px;
}

.form-group {
    display: grid;
    gap: 4px;
    margin-bottom: 8px;
}

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

.form-group input,
select {
    width: 100%;
    padding: 10px 11px;
    border-radius: 12px;
    border: 1px solid rgba(120, 146, 190, 0.18);
    background: rgba(7, 14, 28, 0.94);
    color: #ffffff;
    font-size: 14px;
    transition: 0.16s ease;
}

.form-group input:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.08);
}

.btn-primary {
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #1da7f0 0%, #2563eb 100%);
    color: white;
    cursor: pointer;
    transition: 0.18s ease;
    box-shadow: 0 10px 20px rgba(2, 132, 199, 0.16), inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.login-note {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(7, 14, 28, 0.72);
    border: 1px solid rgba(120, 146, 190, 0.14);
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.5;
}

.flash-wrap {
    margin-bottom: 14px;
}

.standalone-flash {
    width: 100%;
    max-width: 500px;
    margin-bottom: 14px;
}

.flash {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: 13px;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #fecaca;
}

.flash-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

.table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 11px 10px;
    border-bottom: 1px solid rgba(120, 146, 190, 0.1);
    color: var(--text-main);
    font-size: 13px;
}

.data-table th {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.checklist-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.checklist-score-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.checklist-progress-box {
    min-width: 140px;
    background: rgba(8, 16, 31, 0.86);
    border: 1px solid rgba(120, 146, 190, 0.14);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.checklist-store-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: end;
}

.checklist-store-btn {
    display: flex;
    align-items: end;
}

.checklist-items {
    display: grid;
    gap: 12px;
}

.checklist-item-card {
    background: rgba(8, 16, 31, 0.9);
    border: 1px solid rgba(120, 146, 190, 0.12);
    border-radius: 16px;
    padding: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.checklist-checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
}

.checklist-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.task-meta {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 12px;
}

.accordion-section {
    padding: 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.accordion-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    background: linear-gradient(180deg, rgba(13, 22, 40, 0.9) 0%, rgba(8, 16, 31, 0.94) 100%);
    border-radius: 16px;
    border: 1px solid rgba(120, 146, 190, 0.1);
}

.accordion-summary::-webkit-details-marker {
    display: none;
}

.accordion-summary::after {
    content: "▾";
    font-size: 16px;
    color: var(--text-muted);
    margin-left: 8px;
}

.accordion-section[open] .accordion-summary::after {
    content: "▴";
}

.accordion-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.accordion-title {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.accordion-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.accordion-count,
.accordion-percent {
    background: rgba(8, 16, 31, 0.82);
    border: 1px solid rgba(120, 146, 190, 0.14);
    color: var(--text-soft);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
}

.integrity-pill {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.2);
    color: #bfeaff;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: none;
}

.accordion-body {
    padding: 0 18px 18px 18px;
    border-top: 1px solid rgba(120, 146, 190, 0.08);
}

.accordion-body .checklist-items {
    margin-top: 14px;
}

.summary-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.summary-pill {
    background: rgba(8, 16, 31, 0.78);
    border: 1px solid rgba(120, 146, 190, 0.14);
    color: var(--text-soft);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

@media (max-width: 1100px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 18px 16px 22px;
    }

    .accordion-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .accordion-meta {
        margin-left: 0;
    }

    .checklist-score-grid {
        width: 100%;
    }

    .checklist-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .checklist-store-row {
        grid-template-columns: 1fr;
    }

    .area-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.readonly-badge {
    display: inline-block;
    margin-top: 8px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
    color: #fcd34d;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 700;
}

.history-list {
    display: grid;
    gap: 10px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(8, 16, 31, 0.84);
    border: 1px solid rgba(120, 146, 190, 0.12);
    color: var(--text-main);
}

.history-item:hover {
    border-color: rgba(56, 189, 248, 0.16);
}

.history-date {
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
}

.history-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
}

.history-metrics {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    font-size: 12px;
    color: var(--text-soft);
}

.autosave-status {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.area-subtitle {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 12px;
}

.table-badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    min-width: 56px;
    text-align: center;
}

.badge-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
    color: #fde68a;
}

.badge-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #fecaca;
}

.badge-neutral {
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #cbd5e1;
}

.status-badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.status-completed {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

.status-progress {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
    color: #fde68a;
}

.status-not-started {
    background: rgba(100, 116, 139, 0.12);
    border: 1px solid rgba(100, 116, 139, 0.28);
    color: #cbd5e1;
}

.success-pill {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

.warning-pill {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
    color: #fde68a;
}

.neutral-pill {
    background: rgba(100, 116, 139, 0.12);
    border: 1px solid rgba(100, 116, 139, 0.28);
    color: #cbd5e1;
}

.inline-metric {
    font-weight: 700;
    color: var(--text-main);
}

.success-text {
    color: #86efac;
}

.danger-text {
    color: #fca5a5;
}

.admin-task-list {
    display: grid;
    gap: 12px;
}

.admin-task-card {
    background: rgba(8, 16, 31, 0.86);
    border: 1px solid rgba(120, 146, 190, 0.12);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    gap: 12px;
    transition: border 0.18s ease, transform 0.14s ease;
}

.admin-task-card:hover {
    border-color: rgba(56, 189, 248, 0.16);
    transform: translateY(-1px);
}

.admin-task-top {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-task-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.admin-check-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 13px;
}

.checkbox-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.command-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.14) 0%, rgba(37, 99, 235, 0.08) 36%, rgba(9, 18, 35, 0.94) 100%);
    border: 1px solid rgba(56, 189, 248, 0.14);
    box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    padding: 18px 20px;
}

.command-bar-left {
    max-width: 760px;
}

.command-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #8fe7ff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.command-title {
    margin: 0 0 6px 0;
    font-size: 26px;
    line-height: 1.05;
    color: #ffffff;
    font-weight: 800;
}

.command-subtitle {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.45;
}

.command-bar-right {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.command-chip {
    background: rgba(8, 16, 31, 0.68);
    border: 1px solid rgba(120, 146, 190, 0.14);
    color: #eef6ff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.dashboard-grid-premium {
    margin-bottom: 18px;
}

.premium-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13, 22, 40, 0.96) 0%, rgba(8, 16, 31, 0.98) 100%);
    border: 1px solid rgba(120, 146, 190, 0.1);
    backdrop-filter: blur(10px);
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: rgba(148, 163, 184, 0.28);
}

.premium-card-blue::before {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.premium-card-alert::before {
    background: var(--danger);
}

.metric-footnote {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 11px;
}

.premium-panel {
    border: 1px solid rgba(120, 146, 190, 0.1);
    background: linear-gradient(180deg, rgba(13, 22, 40, 0.84) 0%, rgba(8, 16, 31, 0.9) 100%);
    backdrop-filter: blur(10px);
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.summary-pills-large {
    gap: 10px;
}

.area-panel {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.area-header-premium {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(120, 146, 190, 0.08);
}

.area-header-right {
    display: flex;
    align-items: center;
}

.premium-table-wrap {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(120, 146, 190, 0.1);
}

.premium-table thead th {
    background: rgba(7, 14, 28, 0.9);
}

.store-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.store-main {
    font-weight: 700;
    color: #ffffff;
}

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

@media (max-width: 900px) {
    .command-bar {
        flex-direction: column;
    }

    .command-bar-right {
        justify-content: flex-start;
    }

    .command-title {
        font-size: 24px;
    }
}

.exceptions-grid {
    grid-template-columns: repeat(3, 1fr);
}

.exception-panel {
    min-height: 150px;
}

.exception-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exception-chip {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .exceptions-grid {
        grid-template-columns: 1fr;
    }
}

.heatmap-panel {
    overflow: hidden;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
    gap: 10px;
}

.heatmap-tile {
    border-radius: 16px;
    padding: 12px;
    min-height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 8px 18px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
}

.tile-green {
    background: linear-gradient(180deg, rgba(22, 101, 52, 0.28), rgba(20, 83, 45, 0.72));
}

.tile-yellow {
    background: linear-gradient(180deg, rgba(180, 83, 9, 0.28), rgba(146, 64, 14, 0.72));
}

.tile-red {
    background: linear-gradient(180deg, rgba(153, 27, 27, 0.28), rgba(127, 29, 29, 0.76));
}

.tile-gray {
    background: linear-gradient(180deg, rgba(51, 65, 85, 0.26), rgba(30, 41, 59, 0.76));
}

.heatmap-store {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.heatmap-area {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

.heatmap-metrics {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 11px;
    color: #f8fafc;
}

.heatmap-legend {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.legend-chip {
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.legend-green {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.28);
    color: #bbf7d0;
}

.legend-yellow {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.28);
    color: #fde68a;
}

.legend-red {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
    color: #fecaca;
}

.legend-gray {
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #cbd5e1;
}

textarea {
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid rgba(120, 146, 190, 0.18);
    background: rgba(7, 14, 28, 0.94);
    color: #ffffff;
    font-size: 14px;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.08);
}

.full-span {
    grid-column: 1 / -1;
}

.svr-value-list {
    display: grid;
    gap: 12px;
}

.svr-value-card {
    background: rgba(8, 16, 31, 0.88);
    border: 1px solid rgba(120, 146, 190, 0.12);
    border-radius: 14px;
    padding: 12px;
}

.svr-value-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.svr-value-text {
    color: var(--text-main);
    white-space: pre-wrap;
    line-height: 1.45;
    font-size: 13px;
}

.svr-export-block {
    display: grid;
    gap: 10px;
}

.svr-export-row {
    color: var(--text-main);
    font-size: 13px;
}

.svr-divider {
    border: none;
    border-top: 1px solid rgba(120, 146, 190, 0.12);
    margin: 4px 0;
}

.svr-export-section {
    display: grid;
    gap: 5px;
}

.svr-export-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.svr-export-text {
    background: rgba(8, 16, 31, 0.88);
    border: 1px solid rgba(120, 146, 190, 0.12);
    border-radius: 12px;
    padding: 11px;
    white-space: pre-wrap;
    line-height: 1.45;
    color: var(--text-main);
    font-size: 13px;
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: none;
    padding: 9px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.btn-danger:hover {
    background: #dc2626;
}

.compact-grid {
    gap: 8px;
    margin-bottom: 6px;
}

.compact-group {
    gap: 3px;
    margin-bottom: 6px;
}

.compact-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ------------------------------
   Mobile nav / sidebar polish
------------------------------ */

.topbar-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mobile-nav-toggle,
.mobile-nav-close {
    display: none;
    border: 1px solid rgba(120, 146, 190, 0.18);
    background: rgba(8, 16, 31, 0.94);
    color: #ffffff;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.mobile-nav-toggle:hover,
.mobile-nav-close:hover {
    background: rgba(56, 189, 248, 0.1);
}

.mobile-sidebar-overlay {
    display: none;
}

.brand-mobile-row {
    display: block;
}

@media (max-width: 800px) {
    .mobile-nav-toggle {
        display: inline-flex;
    }

    .mobile-nav-close {
        display: inline-flex;
    }

    .brand-mobile-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

    .layout {
        position: relative;
        overflow-x: hidden;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: min(82vw, 320px);
        z-index: 60;
        transform: translateX(-100%);
        transition: transform 0.24s ease;
        overflow-y: auto;
        padding: 20px 16px 24px 16px;
    }

    .mobile-sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(2, 6, 23, 0.66);
        backdrop-filter: blur(4px);
        z-index: 50;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
    }

    body.mobile-nav-open .sidebar {
        transform: translateX(0);
    }

    body.mobile-nav-open .mobile-sidebar-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .main-content {
        width: 100%;
        min-width: 0;
    }

    .nav {
        margin-top: 22px;
    }

    .nav a {
        padding: 13px 12px;
        font-size: 14px;
    }

    .topbar-left {
        width: 100%;
        align-items: flex-start;
    }

    .topbar h2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 12px;
    }
}

/* ------------------------------
   Dashboard store click-through
------------------------------ */

.heatmap-link {
    display: block;
    color: inherit;
}

.heatmap-link:hover .heatmap-tile {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(56, 189, 248, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.heatmap-link .heatmap-tile {
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
    cursor: pointer;
}

.clickable-row {
    cursor: pointer;
    transition: background 0.16s ease;
}

.clickable-row:hover {
    background: rgba(56, 189, 248, 0.06);
}

.clickable-row td {
    position: relative;
}

/* ------------------------------
   Maintenance dashboard cleanup
------------------------------ */

.maintenance-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.maintenance-content-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

@media (max-width: 1100px) {
    .maintenance-metric-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-content-grid {
        grid-template-columns: 1fr;
    }
}

/* Sidebar nav regroup fix */
.nav {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.nav-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.nav-section + .nav-section {
    margin-top: 18px;
}

.nav-section-label {
    display: block;
    width: 100%;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 4px;
    margin-bottom: 2px;
}

.nav-section a {
    display: block;
    width: 100%;
}

.nav-section-bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(120, 146, 190, 0.12);
}

/* ------------------------------
   Admin Page Layout Fix
------------------------------ */

.admin-page {
    display: grid;
    gap: 18px;
}

.admin-page .content-grid {
    grid-template-columns: 1fr !important;
}

.admin-page .panel {
    padding: 18px;
}

/* =========================================================
   Manager Checklist Mobile Cleanup
========================================================= */

.mobile-checklist-page {
    display: grid;
    gap: 0;
}

.mobile-checklist-hero {
    padding: 18px;
}

.mobile-checklist-layout {
    align-items: start;
}

.checklist-panel-head-mobile {
    margin-bottom: 12px;
}

.mobile-checklist-load-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mobile-full-btn {
    width: 100%;
}

.checklist-section-card {
    border-radius: 18px;
    overflow: hidden;
}

.checklist-section-summary {
    padding: 16px 18px;
}

.checklist-section-title {
    font-size: 18px;
}

.mobile-checklist-items {
    gap: 10px;
}

.mobile-checklist-card {
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(8, 16, 31, 0.9);
    border: 1px solid rgba(120, 146, 190, 0.14);
    transition: border-color 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.mobile-checklist-card.is-completed {
    background: rgba(8, 16, 31, 0.76);
    border-color: rgba(34, 197, 94, 0.18);
}

.mobile-checklist-item-main {
    display: grid;
    gap: 8px;
}

.checklist-row-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.mobile-checklist-checkbox-row {
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.3;
    flex: 1;
    min-width: 0;
}

.mobile-checklist-checkbox-row input[type="checkbox"] {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    flex-shrink: 0;
}

.checklist-task-text {
    display: block;
    flex: 1;
    word-break: break-word;
}

.task-time-pill {
    flex-shrink: 0;
    white-space: nowrap;
    background: rgba(8, 16, 31, 0.82);
    border: 1px solid rgba(120, 146, 190, 0.14);
    color: var(--text-soft);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.task-row-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.note-toggle-btn {
    border: 1px solid rgba(120, 146, 190, 0.16);
    background: rgba(8, 16, 31, 0.84);
    color: var(--text-muted);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.16s ease;
}

.note-toggle-btn:hover {
    border-color: rgba(56, 189, 248, 0.22);
    color: #ffffff;
}

.note-toggle-btn.has-note {
    color: #bfeaff;
    border-color: rgba(56, 189, 248, 0.22);
    background: rgba(56, 189, 248, 0.08);
}

.checklist-note-wrap {
    display: none;
    margin-top: 10px;
}

.checklist-note-wrap.is-open {
    display: block;
}

.compact-note-group {
    gap: 5px;
    margin-bottom: 0;
}

.compact-note-group label {
    font-size: 12px;
}

.compact-note-group input {
    min-height: 40px;
    padding: 10px 12px;
}

.mobile-note-group input {
    min-height: 40px;
}

.mobile-history-panel {
    position: sticky;
    top: 18px;
}

.mobile-history-list {
    gap: 8px;
}

.mobile-history-item {
    border-radius: 14px;
    padding: 12px 14px;
}

.autosave-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(120, 146, 190, 0.16);
    background: rgba(8, 16, 31, 0.9);
    font-weight: 700;
    font-size: 12px;
}

.autosave-ready {
    color: #cbd5e1;
}

.autosave-saving {
    color: #93c5fd;
}

.autosave-saved {
    color: #86efac;
}

.autosave-failed {
    color: #fca5a5;
}

.mobile-sticky-save {
    position: sticky;
    bottom: 10px;
    z-index: 20;
    margin-top: 16px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(8, 16, 31, 0.94);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(120, 146, 190, 0.12);
}

@media (max-width: 1100px) {
    .mobile-history-panel {
        position: static;
    }
}

@media (max-width: 800px) {
    .mobile-checklist-hero {
        padding: 16px;
    }

    .checklist-topbar-mobile {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .checklist-score-grid-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        width: 100%;
    }

    .mobile-score-box {
        min-width: 0;
        width: 100%;
        text-align: left;
        padding: 12px 14px;
    }

    .mobile-checklist-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mobile-checklist-load-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .mobile-checklist-info-panel,
    .mobile-checklist-load-panel {
        padding: 16px;
    }

    .mobile-accordion-section {
        margin-bottom: 14px;
    }

    .mobile-accordion-summary {
        padding: 14px 16px;
        align-items: flex-start;
        gap: 10px;
    }

    .checklist-section-title-wrap {
        width: 100%;
    }

    .checklist-section-meta {
        width: 100%;
        justify-content: flex-start;
        margin-left: 0;
    }

    .mobile-accordion-body {
        padding: 0 12px 12px 12px;
    }

    .mobile-checklist-card {
        padding: 11px 12px;
    }

    .checklist-row-top {
        gap: 8px;
    }

    .mobile-checklist-checkbox-row {
        font-size: 14px;
        gap: 10px;
    }

    .mobile-checklist-checkbox-row input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

    .task-time-pill {
        font-size: 10px;
        padding: 5px 8px;
    }

    .note-toggle-btn {
        font-size: 10px;
        padding: 6px 9px;
    }

    .mobile-history-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .history-metrics {
        align-items: flex-start;
        flex-direction: row;
        gap: 8px;
    }

    .mobile-sticky-save {
        bottom: 8px;
        padding: 8px;
    }

    .checklist-save-btn {
        min-height: 46px;
        font-size: 15px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(143, 164, 199, 0.18);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(143, 164, 199, 0.28);
}

/* =========================================================
   Compact Checklist Row Layout
   Keeps the same autosave/checklist behavior, but removes the
   oversized task-card feel so managers can see more tasks at once.
========================================================= */

.checklist-layout-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 16px;
}

.checklist-main-column {
    min-width: 0;
}

.checklist-section-card {
    border: 1px solid rgba(120, 146, 190, 0.12);
    background: linear-gradient(180deg, rgba(13, 22, 40, 0.88) 0%, rgba(8, 16, 31, 0.94) 100%);
}

.checklist-section-summary {
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 18px 18px 0 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: rgba(9, 18, 34, 0.96);
}

.checklist-section-title {
    font-size: 17px;
    line-height: 1.15;
}

.checklist-section-meta {
    gap: 10px;
}

.accordion-body {
    padding: 10px 14px 14px;
}

.accordion-body .checklist-items,
.mobile-checklist-items {
    margin-top: 0;
    gap: 6px;
}

.compact-checklist-row-card,
.mobile-checklist-card.compact-checklist-row-card {
    padding: 9px 12px;
    border-radius: 12px;
    min-height: 48px;
    background: rgba(8, 16, 31, 0.72);
    border-color: rgba(120, 146, 190, 0.12);
    box-shadow: none;
}

.compact-checklist-row-card:hover {
    border-color: rgba(56, 189, 248, 0.18);
    background: rgba(10, 20, 38, 0.82);
}

.compact-checklist-row-card.is-completed,
.mobile-checklist-card.compact-checklist-row-card.is-completed {
    background: rgba(8, 24, 24, 0.58);
    border-color: rgba(34, 197, 94, 0.18);
}

.compact-checklist-item-main,
.mobile-checklist-item-main.compact-checklist-item-main {
    display: block;
}

.checklist-compact-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.compact-checklist-checkbox-row,
.mobile-checklist-checkbox-row.compact-checklist-checkbox-row {
    align-items: center;
    min-width: 0;
    gap: 10px;
    font-size: 14px;
    line-height: 1.25;
}

.compact-checklist-checkbox-row input[type="checkbox"],
.mobile-checklist-checkbox-row.compact-checklist-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0;
}

.compact-checklist-row-card.is-completed .checklist-task-text {
    color: rgba(245, 247, 251, 0.92);
}

.compact-task-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
}

.compact-task-actions .task-time-pill {
    padding: 5px 8px;
    font-size: 10px;
    min-width: 44px;
    text-align: center;
}

.compact-note-toggle,
.note-toggle-btn.compact-note-toggle {
    padding: 5px 9px;
    font-size: 10px;
    min-width: 48px;
    text-align: center;
}

.compact-note-group {
    margin-top: 8px;
    padding-left: 28px;
}

.compact-note-group input {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
}

.checklist-note-wrap.is-open {
    margin-top: 6px;
}

.checklist-score-grid-mobile {
    gap: 8px;
}

.mobile-score-box {
    min-width: 120px;
    padding: 12px;
}

.mobile-score-box h3 {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .checklist-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .checklist-section-summary {
        border-radius: 16px 16px 0 0;
    }

    .accordion-body,
    .mobile-accordion-body {
        padding: 8px 10px 10px;
    }

    .checklist-compact-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .compact-task-actions {
        justify-content: flex-start;
        padding-left: 30px;
    }

    .compact-checklist-checkbox-row,
    .mobile-checklist-checkbox-row.compact-checklist-checkbox-row {
        font-size: 14px;
    }

    .compact-note-group {
        padding-left: 0;
    }
}

/* =========================================================
   Checklist Compact Row Override - existing template classes
   This targets the real classes currently in checklist.html.
========================================================= */

.checklist-section-card .accordion-body,
.checklist-section-card .mobile-accordion-body {
    padding: 8px 12px 12px !important;
}

.checklist-section-card .accordion-body .checklist-items,
.checklist-section-card .mobile-checklist-items {
    margin-top: 0 !important;
    gap: 6px !important;
}

.checklist-section-card .checklist-item-card,
.checklist-section-card .mobile-checklist-card,
.checklist-section-card .mobile-checklist-item-card {
    position: relative !important;
    padding: 9px 12px !important;
    border-radius: 12px !important;
    min-height: 52px !important;
    background: rgba(8, 16, 31, 0.72) !important;
    border: 1px solid rgba(120, 146, 190, 0.12) !important;
    box-shadow: none !important;
}

.checklist-section-card .checklist-item-card.is-completed,
.checklist-section-card .mobile-checklist-card.is-completed,
.checklist-section-card .mobile-checklist-item-card.is-completed {
    background: rgba(7, 22, 25, 0.62) !important;
    border-color: rgba(34, 197, 94, 0.20) !important;
}

.checklist-section-card .checklist-item-main,
.checklist-section-card .mobile-checklist-item-main {
    display: block !important;
    min-width: 0 !important;
}

.checklist-section-card .checklist-row-top {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    padding-right: 138px !important;
    min-height: 32px !important;
}

.checklist-section-card .checklist-checkbox-row,
.checklist-section-card .mobile-checklist-checkbox-row {
    align-items: center !important;
    gap: 10px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    min-width: 0 !important;
}

.checklist-section-card .checklist-checkbox-row input[type="checkbox"],
.checklist-section-card .mobile-checklist-checkbox-row input[type="checkbox"] {
    width: 19px !important;
    height: 19px !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
}

.checklist-section-card .checklist-task-text {
    display: block !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.checklist-section-card .task-time-pill {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    padding: 5px 9px !important;
    font-size: 10px !important;
    min-width: 48px !important;
    text-align: center !important;
}

.checklist-section-card .task-row-footer {
    position: absolute !important;
    right: 72px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.checklist-section-card .note-toggle-btn {
    padding: 5px 9px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    min-height: 24px !important;
}

.checklist-section-card .checklist-note-wrap {
    margin-top: 8px !important;
    padding-right: 0 !important;
}

.checklist-section-card .compact-note-group input,
.checklist-section-card .mobile-note-group input {
    min-height: 36px !important;
    padding: 8px 10px !important;
    font-size: 13px !important;
}

.checklist-section-summary,
.mobile-accordion-summary.checklist-section-summary {
    padding: 12px 16px !important;
    min-height: 52px !important;
}

.checklist-section-title {
    font-size: 17px !important;
}

@media (max-width: 800px) {
    .checklist-section-card .checklist-item-card,
    .checklist-section-card .mobile-checklist-card,
    .checklist-section-card .mobile-checklist-item-card {
        min-height: 70px !important;
        padding: 10px 12px !important;
    }

    .checklist-section-card .checklist-row-top {
        padding-right: 58px !important;
        align-items: flex-start !important;
    }

    .checklist-section-card .checklist-task-text {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    .checklist-section-card .task-time-pill {
        top: 14px !important;
        transform: none !important;
    }

    .checklist-section-card .task-row-footer {
        position: static !important;
        transform: none !important;
        justify-content: flex-start !important;
        margin-top: 6px !important;
        padding-left: 30px !important;
    }
}
