:root {
    --ink: #17202a;
    --muted: #647080;
    --line: #cad4df;
    --soft: #f5f7fa;
    --panel: #ffffff;
    --accent: #2364aa;
    --accent-strong: #174a7c;
    --morning: #fff2b8;
    --morning-line: #d9a20b;
    --danger: #b42318;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #eef2f6;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

a {
    color: var(--accent);
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    padding: 9px 14px;
}

button:hover {
    background: var(--accent-strong);
}

.topbar {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 24px;
    min-height: 58px;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.topbar nav {
    display: flex;
    gap: 14px;
}

.manager-navigation a,
.logout-link {
    border-radius: 6px;
    padding: 8px 12px;
}

.manager-navigation a:hover,
.manager-navigation a.active,
.logout-link:hover {
    background: var(--soft);
}

.logout-link {
    margin-left: auto;
}

.user-chip {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.role {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    padding: 3px 8px;
    text-transform: capitalize;
}

.page {
    padding: 24px;
}

.page-title {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.page-title h1 {
    font-size: 28px;
    margin: 0 0 4px;
}

.manager-home-links {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: 720px;
}

.manager-home-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    display: grid;
    gap: 8px;
    padding: 22px;
}

.manager-home-card:hover {
    border-color: var(--accent);
}

.manager-home-card strong {
    color: var(--accent);
    font-size: 18px;
}

.manager-home-card span {
    color: var(--muted);
}

.title-with-action {
    align-items: center;
    display: flex;
    gap: 8px;
}

.title-with-action h1 {
    margin-bottom: 4px;
}

.title-date-range {
    font: inherit;
    margin-left: 8px;
}

.refresh-button {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    display: inline-flex;
    font-size: 19px;
    height: 30px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 30px;
}

.refresh-button:hover {
    background: var(--soft);
}

.lock-toggle-button svg {
    fill: none;
    height: 17px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 17px;
}

.lock-dialog-body {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.lock-dialog-body p {
    color: var(--muted);
    margin: 0;
}

.lock-dialog-body label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

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

.lock-confirm-button {
    background: var(--danger);
}

.lock-confirm-button:hover {
    background: #8f1c13;
}

.unlock-confirm-button {
    background: #16803c;
}

.unlock-confirm-button:hover {
    background: #10652f;
}

.locked-notice {
    border-color: #f1cf75;
    color: #7a5600;
}

.page-title p {
    color: var(--muted);
    margin: 0;
}

.portal-home {
    display: grid;
    min-height: 100vh;
    padding: 32px 20px;
    place-items: center;
}

.portal-home-content {
    display: grid;
    gap: 34px;
    justify-items: center;
    width: min(760px, 100%);
}

.portal-logo {
    display: block;
    height: auto;
    max-width: 100%;
    width: 720px;
}

.portal-actions {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(180px, 260px));
    justify-content: center;
    width: 100%;
}

.portal-button {
    background: var(--accent);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(23, 32, 42, 0.14);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 20px 24px;
    text-align: center;
}

.portal-button:hover {
    background: var(--accent-strong);
}

.standalone-login-page {
    padding: 24px 0;
}

.login-home-link {
    display: block;
    margin-top: 18px;
    text-align: center;
}

.waitlist-page {
    margin: 0 auto;
    max-width: 1100px;
}

.waitlist-page-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.waitlist-heading {
    align-items: center;
    display: flex;
    gap: 18px;
}

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

.waitlist-header-actions form {
    margin: 0;
}

.waitlist-logo {
    display: block;
    height: auto;
    width: 150px;
}

.waitlist-page-header h1 {
    font-size: 28px;
    margin: 0 0 4px;
}

.waitlist-date {
    color: #c4511b;
    font-size: 28px;
    font-weight: 700;
    margin-left: 10px;
    white-space: nowrap;
}

.waitlist-page-header p {
    color: var(--muted);
    margin: 0;
}

.waitlist-current-list {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-top: 22px;
    padding: 20px;
}

.waitlist-section-heading {
    margin-bottom: 16px;
}

.waitlist-section-heading h2 {
    font-size: 20px;
    margin: 0 0 4px;
}

.waitlist-section-heading p {
    color: var(--muted);
    margin: 0;
}

.optional-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
}

.waitlist-text-option {
    align-items: center;
    color: var(--ink);
    display: flex;
    gap: 8px;
}

.waitlist-text-option input {
    margin: 0;
    width: auto;
}

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

.waitlist-table {
    border-collapse: collapse;
    min-width: 520px;
    width: 100%;
}

/* Temporarily hidden from the Waiting List interface. Data and server support
   remain in place so these columns can be restored without a migration. */
.waitlist-phone-column,
.waitlist-text-column {
    display: none;
}

.waitlist-table th,
.waitlist-table td {
    border: 1px solid var(--line);
    padding: 10px;
    text-align: left;
}

.waitlist-table th {
    background: var(--soft);
}

.waitlist-table th:last-child,
.waitlist-table td:last-child {
    width: 90px;
}

.waitlist-input-row {
    background: #fff8e8;
}

.waitlist-input-row td {
    padding: 6px;
}

.waitlist-auto-time {
    color: var(--muted);
    font-size: 12px;
}

.waitlist-input-row input:not([type="checkbox"]) {
    min-width: 100px;
    padding: 8px;
    width: 100%;
}

.waitlist-row-completed td,
.waitlist-row-canceled td {
    background: #dfe3e7;
}

.waitlist-row-completed td:not(.waitlist-actions),
.waitlist-row-canceled td:not(.waitlist-actions) {
    color: var(--muted);
    text-decoration: line-through;
}

.waitlist-actions {
    white-space: nowrap;
}

.waitlist-status-link {
    background: transparent;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    padding: 4px 6px;
}

.waitlist-complete-link {
    color: #16803c;
}

.waitlist-cancel-link {
    color: var(--danger);
}

.waitlist-status-link:hover {
    background: var(--soft);
}

.waitlist-entry-error[hidden] {
    display: none;
}

.waiting-list-pin-dialog {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(23, 32, 42, 0.25);
    max-width: 420px;
    padding: 0;
    width: calc(100% - 32px);
}

.waiting-list-pin-dialog:not([open]) {
    display: none;
}

.waiting-list-pin-dialog::backdrop {
    background: rgba(23, 32, 42, 0.48);
}

.waiting-list-pin-form {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.waiting-list-pin-form h2,
.waiting-list-pin-form p {
    margin: 0;
}

.waiting-list-pin-form > label {
    display: grid;
    gap: 6px;
}

.waiting-list-pin-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.waiting-list-pin-cancel {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
}

.waiting-list-pin-cancel:hover {
    background: var(--soft);
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.week-total-hours {
    color: var(--ink);
    font-weight: 700;
    margin-left: 10px;
}

.login-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
}

.login-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 8px;
    max-width: 380px;
    padding: 28px;
    width: calc(100% - 32px);
}

.login-panel h1 {
    font-size: 28px;
    margin: 0 0 4px;
}

.login-panel p {
    color: var(--muted);
    margin: 0 0 18px;
}

.login-panel form,
.employee-add {
    display: grid;
    gap: 12px;
}

.login-panel .reset-login-form {
    margin-top: 18px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.reset-login-button {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--accent);
}

.reset-login-button:hover {
    border-color: var(--accent);
    background: var(--soft);
}

.reset-login-form small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

label {
    color: var(--muted);
    display: grid;
    gap: 6px;
}

input,
select,
textarea {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    min-width: 0;
    padding: 8px;
    width: 100%;
}

input[type="time"] {
    font-size: 14px;
    min-width: 106px;
    padding: 5px 2px;
}

input[type="time"].missing-time {
    border-color: #d92d20;
    box-shadow: 0 0 0 1px #d92d20;
}

textarea {
    min-height: 24px;
    padding-bottom: 3px;
    padding-top: 3px;
    resize: vertical;
}

.shift-card textarea:disabled {
    background: transparent;
    border-color: transparent;
    color: var(--ink);
    opacity: 1;
    resize: none;
}

.alert,
.notice {
    background: #fff0f0;
    border: 1px solid #f0b8b8;
    border-radius: 6px;
    color: var(--danger);
    padding: 10px 12px;
}

.notice {
    background: #fff;
    color: var(--muted);
}

.week-actions {
    display: flex;
    gap: 8px;
}

.week-actions a {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    padding: 8px 11px;
}

.schedule-section {
    margin: 0 0 26px;
}

.schedule-section h2 {
    font-size: 18px;
    margin: 0 0 10px;
}

.schedule-grid-wrap {
    background: #fff;
    border: 1px solid var(--line);
    overflow: visible;
}

.schedule-grid {
    border-collapse: collapse;
    min-width: 1858px;
    table-layout: fixed;
    width: 100%;
}

.schedule-grid th,
.schedule-grid td {
    border: 1px solid var(--line);
    vertical-align: top;
}

.schedule-grid tbody tr:nth-child(4n + 1) > th,
.schedule-grid tbody tr:nth-child(4n + 1) > td {
    border-top: 4px solid #6aa6d8;
}

.schedule-grid tbody tr:nth-child(4n + 2) > th,
.schedule-grid tbody tr:nth-child(4n + 2) > td {
    border-top: 4px solid #7fc98d;
}

.schedule-grid tbody tr:nth-child(4n + 3) > th,
.schedule-grid tbody tr:nth-child(4n + 3) > td {
    border-top: 4px solid #d7a456;
}

.schedule-grid tbody tr:nth-child(4n) > th,
.schedule-grid tbody tr:nth-child(4n) > td {
    border-top: 4px solid #c789d8;
}

.schedule-grid thead th {
    background: #FEF1E6;
    font-weight: 700;
    padding: 10px;
    position: sticky;
    text-align: center;
    top: 58px;
    z-index: 4;
}

.schedule-grid thead span,
.name-col span {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 3px;
}

.name-col .total-hours {
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
}

.schedule-grid thead .day-total-hours {
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
}

.name-col {
    background: #f7f9fb;
    left: 0;
    padding: 8px;
    position: sticky;
    text-align: left;
    z-index: 2;
}

.schedule-grid thead .name-col {
    background: #FEF1E6;
    z-index: 5;
}

.name-column {
    width: 80px;
}

.day-column {
    width: 254px;
}

.employee-schedule-grid {
    min-width: 1304px;
}

.employee-schedule-grid .day-column {
    width: 174px;
}

.employee-schedule-grid td {
    padding: 1px;
}

.employee-schedule-grid tbody tr:nth-child(4n + 1) > th,
.employee-schedule-grid tbody tr:nth-child(4n + 1) > td,
.employee-schedule-grid tbody tr:nth-child(4n + 2) > th,
.employee-schedule-grid tbody tr:nth-child(4n + 2) > td,
.employee-schedule-grid tbody tr:nth-child(4n + 3) > th,
.employee-schedule-grid tbody tr:nth-child(4n + 3) > td,
.employee-schedule-grid tbody tr:nth-child(4n) > th,
.employee-schedule-grid tbody tr:nth-child(4n) > td {
    border-top-width: 3px;
}

td {
    background: #fff;
    padding: 4px;
}

.shift-card {
    background: var(--soft);
    border: 1px solid #dfe6ee;
    border-radius: 6px;
    margin-bottom: 4px;
    padding: 4px;
}

.shift-card:last-child {
    margin-bottom: 0;
}

.shift-placeholder {
    min-height: 73px;
    margin-bottom: 5px;
}

.shift-card-extra {
    margin-top: 6px;
}

.morning-shift {
    background: var(--morning);
    border-color: var(--morning-line);
}

.valid-shift {
    background: #D2FED9;
    border-color: #e2ba37;
}

.opener-shift {
    background: #B3FFFF;
    border-color: #38cfd1;
}

.late-edited-shift {
    background: #FFFF99;
    border-color: #d9c83a;
}

.shift-label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.time-pair {
    align-items: center;
    display: grid;
    gap: 3px;
    grid-template-columns: minmax(106px, 1fr) 12px minmax(106px, 1fr);
    margin-bottom: 3px;
}

.time-pair span {
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.time-text-pair {
    align-items: center;
    display: grid;
    font-size: 15px;
    gap: 1px;
    grid-template-columns: 1fr 8px 1fr;
    line-height: 1.15;
}

.time-text-pair span {
    min-width: 0;
    text-align: center;
}

.note-text {
    font-size: 12px;
    line-height: 1.15;
    margin-top: 1px;
    overflow-wrap: anywhere;
}

.employee-schedule-grid .note-text {
    margin-left: 4px;
}

.employee-schedule-grid .shift-card {
    margin-bottom: 2px;
    padding: 2px;
}

.employee-schedule-grid .shift-placeholder {
    min-height: 34px;
    margin-bottom: 2px;
}

details {
    margin-top: 5px;
}

summary {
    color: var(--accent);
    cursor: pointer;
    font-size: 12px;
}

.extra-shift {
    border-top: 1px dashed var(--line);
    margin-top: 7px;
    padding-top: 6px;
}

.extra-shift > summary {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--accent);
    display: inline-block;
    padding: 5px 8px;
}

.extra-shift[open] > summary {
    margin-bottom: 6px;
}

.shift-actions {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.changes-link,
.clear-shift-link {
    background: transparent;
    color: var(--accent);
    font-size: 12px;
    padding: 0;
}

.clear-shift-link {
    color: var(--danger);
}

.changes-link:hover,
.clear-shift-link:hover {
    background: transparent;
    text-decoration: underline;
}

.changes-link:hover {
    color: var(--accent-strong);
}

.clear-shift-link:hover {
    color: #8f1c13;
}

.changes-dialog {
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(23, 32, 42, .24);
    color: var(--ink);
    max-width: 420px;
    padding: 0;
    width: calc(100% - 32px);
}

.changes-dialog::backdrop {
    background: rgba(23, 32, 42, .32);
}

.changes-header {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 14px;
}

.dialog-close {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 5px 8px;
}

.dialog-close:hover {
    background: var(--soft);
}

.changes-subtitle {
    color: var(--muted);
    margin: 0;
    padding: 10px 14px 0;
}

.change-list {
    display: grid;
    gap: 8px;
    max-height: 280px;
    overflow-y: auto;
    padding: 12px 14px 14px;
}

.change-item {
    background: var(--soft);
    border: 1px solid #dfe6ee;
    border-radius: 6px;
    display: grid;
    gap: 4px;
    padding: 8px;
}

.change-item div {
    display: grid;
    gap: 3px;
}

.change-item span,
.change-item small,
.empty-changes {
    color: var(--muted);
}

.empty-changes {
    margin: 0;
    padding: 12px 14px 14px;
}

.savebar {
    align-items: center;
    background: rgba(238, 242, 246, .95);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 24px;
    position: sticky;
}

.schedule-add-control {
    align-items: center;
    display: flex;
    gap: 8px;
}

.schedule-add-control select {
    min-width: 220px;
}

.copy-week-button {
    background: #16803c;
}

.copy-week-button:hover {
    background: #10652f;
}

.employee-add {
    background: #fff;
    border: 1px solid var(--line);
    grid-template-columns: 1.2fr 1.5fr 1fr 1fr 90px auto;
    margin-bottom: 18px;
    padding: 14px;
}

.employee-table {
    background: #fff;
    border: 1px solid var(--line);
    min-width: 1040px;
}

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

.employee-list-toolbar {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.employee-filter {
    background: #e8edf3;
    border-radius: 9px;
    display: inline-flex;
    gap: 3px;
    padding: 4px;
}

.employee-filter a {
    border-radius: 7px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 14px;
    text-decoration: none;
}

.employee-filter a:hover {
    background: rgba(255, 255, 255, 0.65);
}

.employee-filter a.active {
    background: #fff;
    box-shadow: 0 1px 4px rgba(23, 32, 42, 0.18);
    color: #146b34;
}

.employee-result-count {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.employee-row {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(130px, 1.1fr) minmax(170px, 1.3fr) minmax(140px, 1fr) minmax(150px, 1fr) 68px 110px 84px;
    padding: 10px;
}

.employee-row:last-child {
    border-bottom: 0;
}

.employee-head {
    background: #e8edf3;
    font-weight: 700;
}

.readonly-row,
.employee-head-readonly {
    grid-template-columns: minmax(130px, 1.1fr) minmax(170px, 1.3fr) minmax(140px, 1fr) minmax(150px, 1fr) 68px 110px;
}

.employee-action-heading {
    text-align: center;
}

.employee-empty-state {
    color: var(--muted);
    margin: 0;
    padding: 28px;
    text-align: center;
}

.checkline {
    align-items: center;
    display: flex;
    gap: 6px;
}

.checkline input {
    width: auto;
}

@media (max-width: 800px) {
    .topbar,
    .page-title,
    .employee-add,
    .employee-row {
        align-items: stretch;
        display: grid;
        grid-template-columns: 1fr;
    }

    .employee-list-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .employee-filter {
        align-self: flex-start;
    }

    .employee-table {
        min-width: 0;
    }

    .employee-head {
        display: none;
    }

    .employee-row:not(.employee-head) {
        gap: 8px;
        padding: 14px;
    }

    .user-chip {
        margin-left: 0;
    }

    .logout-link {
        margin-left: 0;
    }

    .portal-actions {
        grid-template-columns: minmax(0, 320px);
    }

    .waitlist-page-header {
        align-items: flex-start;
        gap: 20px;
    }

    .waitlist-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .waitlist-logo {
        width: 120px;
    }

    .waitlist-date {
        display: block;
        margin: 4px 0 0;
    }

    .page {
        padding: 16px;
    }
}

/* Waiting List is primarily operated on a tablet. Keep the whole work area
   compact while preserving comfortable touch targets. */
@media (min-width: 600px) and (max-width: 1100px) {
    .waitlist-page {
        max-width: none;
        padding: 14px;
    }

    .waitlist-page-header {
        align-items: center;
        gap: 14px;
    }

    .waitlist-heading {
        align-items: center;
        flex-direction: row;
        gap: 12px;
        min-width: 0;
    }

    .waitlist-logo {
        flex: 0 0 auto;
        width: 96px;
    }

    .waitlist-page-header h1,
    .waitlist-date {
        font-size: 24px;
    }

    .waitlist-date {
        margin-top: 2px;
    }

    .waitlist-page-header p {
        display: none;
    }

    .waitlist-header-actions {
        flex: 0 0 auto;
    }

    .waitlist-header-actions button,
    .waitlist-input-row button,
    .waiting-list-pin-actions button {
        min-height: 44px;
        min-width: 72px;
    }

    .waitlist-current-list {
        margin-top: 14px;
        padding: 12px;
    }

    .waitlist-section-heading {
        margin-bottom: 10px;
    }

    .waitlist-table-wrap {
        -webkit-overflow-scrolling: touch;
    }

    .waitlist-table {
        font-size: 14px;
        min-width: 520px;
        table-layout: fixed;
    }

    .waitlist-table th,
    .waitlist-table td {
        padding: 7px 6px;
    }

    .waitlist-table th:nth-child(1) { width: 35%; }
    .waitlist-table th:nth-child(2) { width: 20%; }
    .waitlist-table th:nth-child(3) { width: 20%; }
    .waitlist-table th:nth-child(6) { width: 25%; }

    .waitlist-input-row input:not([type="checkbox"]) {
        font-size: 16px;
        min-height: 44px;
        min-width: 0;
        padding: 7px;
    }

    .waitlist-text-option {
        line-height: 1.2;
    }

    .waitlist-text-option input {
        height: 22px;
        min-width: 22px;
    }

    .waitlist-status-link {
        min-height: 44px;
        min-width: 36px;
    }

    .waiting-list-pin-form input {
        font-size: 18px;
        min-height: 46px;
    }
}

@media print {
    .topbar,
    .week-actions {
        display: none !important;
    }
}
