@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════
   TABSWAY KITCHEN — DESIGN SYSTEM
   Colors extracted from the Tabsway Kitchen logo
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Primary (logo red) */
    --red: #C0302F;
    --red-dark: #9B2524;
    --red-deep: #7A1D1C;
    --red-light: #E85D5C;
    --red-bg: #FFF0F0;

    /* Accent (logo yellow) */
    --yellow: #F4B731;
    --yellow-hover: #F9A825;
    --yellow-bright: #FFD23F;
    --yellow-soft: #FFF8E1;
    --yellow-bg: #FFF9C4;

    /* Warm neutrals */
    --brown-dark: #4C2F25;
    --brown-med: #6D4C41;
    --brown-light: #8D6E63;
    --orange: #F2A24C;
    --orange-fire: #E86933;

    /* Functional */
    --green: #2E7D32;
    --green-light: #4CAF50;
    --green-bg: #E8F5E9;
    --green-soft: #F1F8E9;
    --blue: #1565C0;
    --blue-bg: #E3F2FD;

    /* Status */
    --error: #C62828;
    --error-bg: #FFEBEE;
    --warning: #F57F17;
    --warning-bg: #FFF3E0;

    /* Surfaces */
    --bg-page: #FFF9C4;
    --bg-card: #FFFFFF;
    --bg-sidebar: #4C2F25;
    --bg-navbar: #C0302F;
    --bg-table-header: #F4B731;
    --bg-table-alt: #FFF8E1;

    /* Borders & shadows */
    --border-input: #F4B731;
    --border-card: #FFE082;
    --border-table: #FFE082;
    --shadow-card: 0 8px 30px rgba(76, 47, 37, 0.12);
    --shadow-btn: 0 6px 16px rgba(192, 48, 47, 0.35);
    --shadow-btn-hover: 0 10px 24px rgba(155, 37, 36, 0.5);

    /* Typography */
    --font: 'Poppins', sans-serif;

    /* Radius */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-pill: 50px;
}

/* ── Reset & Base ──────────────────────────────────────────────── */

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Stop mobile browsers from auto-inflating text in landscape, and keep long
   words/URLs from forcing horizontal page scroll on narrow phones. */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
    font-family: var(--font);
    color: var(--brown-dark);
    background: var(--bg-page);
    min-height: 100vh;
    line-height: 1.6;
    overflow-wrap: break-word;
}

/* Media never overflows its container on small screens. */
img, svg, video, canvas { max-width: 100%; height: auto; }

/* Subtle branded tap feedback instead of the default grey flash on touch. */
button, a, .btn, .nav-link, .tab, .sidebar-item {
    -webkit-tap-highlight-color: rgba(192, 48, 47, 0.15);
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }

/* ── Typography ────────────────────────────────────────────────── */

.page-title { font-size: 1.5rem; font-weight: 700; color: var(--red-dark); }
.section-title { font-size: 1.15rem; font-weight: 600; color: var(--brown-dark); margin-bottom: 12px; }
.text-muted { color: var(--brown-light); font-size: 0.85rem; }
.text-green { color: var(--green); }
.text-red { color: var(--error); }

/* ── Navbar ────────────────────────────────────────────────────── */

.navbar {
    background: var(--bg-navbar);
    color: white;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
}

.navbar-brand img { height: 40px; border-radius: 50%; }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    color: white;
    padding: 8px 14px;
    border-radius: var(--r-md);
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.nav-link:hover { background: rgba(255,255,255,0.15); color: var(--yellow-bright); text-decoration: none; }
.nav-link.active { background: rgba(255,255,255,0.2); color: var(--yellow); }

.nav-user {
    color: var(--yellow);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 8px;
}

/* ── Cards ─────────────────────────────────────────────────────── */

.card {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    padding: 30px 35px;
    box-shadow: var(--shadow-card);
    border: 2px solid var(--border-card);
}

.card-sm { padding: 20px 24px; border-radius: var(--r-lg); }

/* ── Buttons ───────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-primary { background: var(--red); color: white; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--red-dark); box-shadow: var(--shadow-btn-hover); transform: translateY(-1px); }

.btn-accent { background: var(--yellow); color: var(--brown-dark); }
.btn-accent:hover { background: var(--yellow-hover); transform: translateY(-1px); }

.btn-success { background: var(--green); color: white; }
.btn-success:hover { background: #1B5E20; transform: translateY(-1px); }

.btn-danger { background: var(--error); color: white; }
.btn-danger:hover { background: var(--red-deep); transform: translateY(-1px); }

.btn-ghost { background: transparent; border: 2px solid var(--red); color: var(--red); }
.btn-ghost:hover { background: var(--red); color: white; }

.btn-sm { padding: 6px 14px; font-size: 0.8rem; }

.btn:disabled, .btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none; }

/* ── Forms ─────────────────────────────────────────────────────── */

.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }

.form-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--brown-dark);
    font-size: 0.9rem;
}

.form-control {
    padding: 10px 14px;
    border: 2px solid var(--border-input);
    border-radius: var(--r-md);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--brown-dark);
    background: var(--bg-card);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--yellow-hover);
    background: #FFFDE7;
    box-shadow: 0 0 0 3px rgba(244, 183, 49, 0.2);
}

.form-control:read-only {
    background: var(--green-soft);
    border-color: #A5D6A7;
    color: var(--green);
    cursor: default;
}

select.form-control { cursor: pointer; }

textarea.form-control { resize: vertical; min-height: 80px; }

.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-row .form-group { flex: 1; min-width: 200px; }

/* ── Tables ────────────────────────────────────────────────────── */

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table th {
    background: var(--bg-table-header);
    color: var(--brown-dark);
    font-weight: 600;
    padding: 12px 14px;
    text-align: left;
    border: 1px solid var(--border-table);
}

.table td {
    padding: 10px 14px;
    border: 1px solid var(--border-table);
    vertical-align: middle;
}

.table tr:nth-child(even) { background: var(--bg-table-alt); }
.table tr:hover { background: var(--warning-bg); }

/* ── Badges ────────────────────────────────────────────────────── */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-admin { background: var(--red); color: white; }
.badge-privileged { background: var(--orange-fire); color: white; }
.badge-manager { background: var(--yellow); color: var(--brown-dark); }
.badge-user { background: var(--brown-light); color: white; }

.badge-active { background: var(--green); color: white; }
.badge-pending { background: var(--blue); color: white; }
.badge-rejected { background: var(--error); color: white; }
.badge-expired { background: var(--warning); color: white; }
.badge-inactive { background: #9E9E9E; color: white; }

.badge-restricted { background: var(--red-bg); color: var(--red); border: 1px solid var(--red-light); }

.badge-count {
    background: var(--red);
    color: white;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ── Alerts & Messages ─────────────────────────────────────────── */

.alert {
    padding: 14px 18px;
    border-radius: var(--r-sm);
    font-weight: 500;
    margin-bottom: 16px;
    border-left: 5px solid;
}

.alert-success { background: var(--green-bg); color: var(--green); border-color: var(--green); }
.alert-error { background: var(--error-bg); color: var(--error); border-color: var(--error); }
.alert-warning { background: var(--warning-bg); color: var(--warning); border-color: var(--warning); }
.alert-info { background: var(--blue-bg); color: var(--blue); border-color: var(--blue); }

/* ── Tabs ──────────────────────────────────────────────────────── */

.tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-card);
    margin-bottom: 24px;
    overflow-x: auto;
}

.tab {
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brown-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font);
}

.tab:hover { color: var(--red); }
.tab.active { color: var(--red); border-bottom-color: var(--red); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Auth Pages (Login, Apply) ─────────────────────────────────── */

.auth-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--red), var(--yellow), var(--green));
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.auth-card {
    background: white;
    border-radius: var(--r-xl);
    max-width: 420px;
    width: 100%;
    padding: 40px 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    text-align: center;
}

.auth-card.wide { max-width: 520px; }

.auth-logo { width: 100px; margin-bottom: 16px; border-radius: 50%; }

.auth-title { font-size: 1.5rem; color: var(--green); font-weight: 700; margin-bottom: 4px; }
.auth-subtitle { font-size: 0.95rem; color: var(--red); margin-bottom: 24px; }

.auth-card .form-control {
    width: 100%;
    margin-bottom: 14px;
}

.auth-card .btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 8px;
}

.auth-link { margin-top: 16px; font-size: 0.85rem; color: var(--brown-med); }
.auth-link a { color: var(--green); font-weight: 600; }

.password-wrapper { position: relative; }
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.1rem;
    user-select: none;
    color: var(--brown-light);
}

/* ── Admin Layout ──────────────────────────────────────────────── */

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

.admin-sidebar {
    width: 260px;
    background: var(--bg-sidebar);
    color: white;
    padding: 20px 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-logo {
    text-align: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
}

.sidebar-logo img { width: 60px; border-radius: 50%; }
.sidebar-logo h3 { color: var(--yellow); font-size: 0.9rem; margin-top: 8px; }

.sidebar-nav { list-style: none; }

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    text-decoration: none;
}

.sidebar-item:hover { background: rgba(255,255,255,0.08); color: white; text-decoration: none; }
.sidebar-item.active { background: rgba(255,255,255,0.1); color: var(--yellow); border-left-color: var(--yellow); }

/* Quick Home/Logout pills in the admin sidebar header. Hidden on desktop
   (the vertical sidebar already keeps Home/Logout in view); revealed on
   mobile where the nav collapses into a horizontal scroll strip. */
.sidebar-quick { display: none; gap: 6px; }
.sidebar-quick a {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 8px 13px; min-height: 40px;
    border-radius: 999px; font-size: 0.8rem; font-weight: 600;
    background: rgba(255,255,255,0.14); color: #fff; white-space: nowrap;
}
.sidebar-quick a:hover { background: rgba(255,255,255,0.26); color: #fff; text-decoration: none; }
.sidebar-quick a.home { background: var(--yellow); color: var(--brown-dark); }
.sidebar-quick a.home:hover { background: var(--yellow-hover); }

.admin-content {
    flex: 1;
    padding: 24px 32px;
    background: var(--bg-page);
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

/* ── Loading ───────────────────────────────────────────────────── */

.loading { display: inline-block; animation: dots 1.5s steps(5, end) infinite; }

@keyframes dots {
    0%, 20% { text-shadow: 0.25em 0 0 transparent, 0.5em 0 0 transparent; }
    40% { text-shadow: 0.25em 0 0 currentColor, 0.5em 0 0 transparent; }
    60%, 100% { text-shadow: 0.25em 0 0 currentColor, 0.5em 0 0 currentColor; }
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(192, 48, 47, 0.2);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Utility ───────────────────────────────────────────────────── */

.container { max-width: 1100px; margin: 0 auto; padding: 30px 20px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }

/* ── Responsive ────────────────────────────────────────────────── */
/*
 * Three breakpoints, mobile-considerate:
 *   • <= 1024px : tablets (portrait iPad and similar) — ease desktop
 *                 spacing so the layout breathes without fully collapsing.
 *   • <=  768px : phones + small tablets — single-column reflow, 44px tap
 *                 targets, 16px inputs (no iOS focus-zoom), scrollable tables.
 *   • <=  480px : compact phones — trim chrome further, logo-only brand.
 * Each block is additive: a phone (<=480) inherits the 768 and 1024 rules
 * that aren't overridden.
 */

/* Utility: drop-in replacement for inline two-column grids so they
   collapse to a single column on small screens. */
.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Opt-in wrapper for dense tables outside .admin-content. */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Recipe tile grid on the kitchen page Step 1 — selected tile gets a
   bright yellow ring + glow so it's unmistakable against any background.
   Yellow matches the brand accent used elsewhere (admin active sidebar). */
.recipe-tile:hover { box-shadow: 0 3px 10px rgba(0,0,0,0.25) !important; }
.recipe-tile-selected {
    outline: 4px solid var(--yellow, #F4B731);
    outline-offset: 2px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.9),
        0 4px 16px rgba(244, 183, 49, 0.55) !important;
    z-index: 1;
}
.recipe-tile-locked { filter: grayscale(0.4); }

/* ── Tablets (portrait iPad ~768–1024px) ──────────────────────────
   Keep the two-pane/desktop structure but tighten spacing so wide
   toolbars and the admin sidebar don't crowd a 768–1024px viewport. */
@media (min-width: 769px) and (max-width: 1024px) {
    .container { max-width: 100%; padding: 24px 20px; }
    .navbar { height: auto; min-height: 60px; padding: 8px 16px; flex-wrap: wrap; gap: 8px; }
    .navbar-nav { gap: 6px; flex-wrap: wrap; }
    .nav-link { padding: 8px 12px; font-size: 0.85rem; background: rgba(255,255,255,0.12); border-radius: 999px; }
    .admin-sidebar { width: 210px; }
    .admin-content { padding: 20px 22px; }
    .card { padding: 24px 26px; }
    /* Give dense tables a horizontal escape hatch before they squeeze. */
    .card .table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 768px) {
    /* ── Admin: sidebar flips into a horizontal scrollable tab strip ── */
    .admin-layout { flex-direction: column; }

    .admin-sidebar {
        width: 100%;
        height: auto;
        max-height: 35vh;
        position: static;
        padding: 10px 0;
        overflow-y: visible;
    }
    /* Header becomes a row: logo left, always-visible Home/Logout pills right. */
    .sidebar-logo { padding: 8px 14px 10px; display: flex; align-items: center; gap: 8px; text-align: left; }
    .sidebar-logo img { width: 36px; flex-shrink: 0; }
    .sidebar-logo h3 { display: none; }
    .sidebar-quick { display: flex; margin-left: auto; }
    /* Home/Logout now live in the header above, so drop the copies that
       would otherwise sit at the far (scrolled-off) end of the tab strip. */
    .sidebar-bottom { display: none; }

    .sidebar-nav {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 4px;
        padding: 0 12px;
        scrollbar-width: thin;
    }
    .sidebar-nav li { flex-shrink: 0; }
    .sidebar-item {
        padding: 10px 14px;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 6px 6px 0 0;
        white-space: nowrap;
        min-height: 44px;
    }
    .sidebar-item.active { border-left-color: transparent; border-bottom-color: var(--yellow); }

    .admin-content { padding: 14px; }
    .admin-header { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* ── Page container: tighter, respects notch safe-areas ── */
    .container { padding: 16px 14px; }
    .container,
    .navbar { padding-left: max(14px, env(safe-area-inset-left));
              padding-right: max(14px, env(safe-area-inset-right)); }

    /* ── Navbar: wraps, compact spacing, touch-friendly links ── */
    /* height→auto: a fixed 60px bar can't contain wrapped nav links, so
       they used to spill over the page heading below. */
    .navbar { height: auto; min-height: 60px; padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap; gap: 8px; }
    /* The brand keeps row 1; the nav links drop onto their own full-width
       row and center as uniform pill buttons instead of a ragged,
       left-aligned block that reads as plain text. */
    .navbar-nav { gap: 6px; flex-wrap: wrap; justify-content: center; flex-basis: 100%; }
    .nav-link {
        padding: 8px 13px;
        font-size: 0.8rem;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        background: rgba(255,255,255,0.12);
        border-radius: 999px;
    }
    .nav-link:active { background: rgba(255,255,255,0.28); }
    /* Signed-in username drops onto its own centered line above the pill
       nav so it reads as a label instead of a cramped, button-less item
       wedged between the link pills. */
    .navbar-nav li:has(.nav-user) { flex-basis: 100%; display: flex; justify-content: center; }
    .nav-user { margin-right: 0; }

    /* ── Forms: stack columns, enforce touch-friendly heights ── */
    .form-row { flex-direction: column; gap: 10px; }
    .form-row .form-group { min-width: 100%; }
    .responsive-grid { grid-template-columns: 1fr; gap: 10px; }
    .form-control { min-height: 44px; }
    textarea.form-control { min-height: 72px; }
    /* 16px is the threshold below which iOS Safari zooms in on focus —
       which then leaves the page awkwardly scrolled. Bump inputs to 16px
       on phones to keep typing put. */
    .form-control,
    input.form-control,
    select.form-control,
    textarea.form-control { font-size: 16px; }

    /* ── Tables: dense tables scroll sideways instead of crushing ── */
    .table { font-size: 0.82rem; }
    .table th, .table td { padding: 8px 6px; }
    .table-scroll table,
    .table-scroll .table { min-width: 520px; }
    /* Any table in a card or the admin pane becomes its own horizontal
       scroller on phones — preview, bar, inventory, suppliers, etc. */
    .admin-content .table,
    .card .table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    .admin-content .table th,
    .admin-content .table td,
    .card .table th,
    .card .table td { white-space: normal; }

    /* ── Cards + buttons: tighter padding, 44px tap targets ── */
    .card { padding: 16px; }
    .card-sm { padding: 12px; }
    .btn { padding: 10px 16px; min-height: 44px; }
    .btn-sm { padding: 8px 12px; min-height: 36px; font-size: 0.8rem; }

    /* ── Misc: stacked toolbars, trimmed auth card ── */
    .flex-between { flex-direction: column; gap: 12px; align-items: flex-start; }
    .auth-card { margin: 20px 10px; padding: 22px 18px; }
}

/* ── Compact phones (<=480px) ─────────────────────────────────────
   Reclaim every pixel: smaller headings, logo-only brand so nav links
   fit, and tighter cards. */
@media (max-width: 480px) {
    .page-title { font-size: 1.25rem; }
    .section-title { font-size: 1.05rem; }
    .container { padding: 12px 12px; }
    .card { padding: 14px; }
    .card-sm { padding: 10px; }
    /* Drop the wordmark on the tightest screens — the round logo still
       brands the bar and frees room for the nav links beside it. */
    .navbar-brand span { display: none; }
    .navbar-brand img { height: 34px; }
    /* Full-width primary actions read as obvious tap targets on a phone. */
    .auth-card .btn,
    .btn-block { width: 100%; }
}

/* ── Print ─────────────────────────────────────────────────────── */

@media print {
    body { background: white !important; }
    .navbar, .admin-sidebar, .btn, form, .tabs { display: none !important; }
    .card { box-shadow: none !important; border: none !important; }
}
