﻿/* ═══════════════════════════════════════════════════════════════
   BASE / LEGACY
   ═══════════════════════════════════════════════════════════════ */

body {
    font-size: 9pt;
    color: #606060;
    font-family: 'Century Gothic', Arial, 'Times New Roman';
    padding: 0px;
    margin: 0px;
}

/* ── Sortable grid header (Admin > View Stores / View Employees) ─
   RESTYLED (9/14/2026, per explicit instruction to update these admin
   list pages to the new look) from the old black/outset-border 90s style
   to match the site's dark-ink design system -- same header look as
   Reports/TrackerReport.aspx's .GridResults th, just applied globally
   since HeaderStyleSortable is a DataGrid HeaderStyle CssClass (not
   scoped to one page). */
.HeaderStyleSortable,
.pol-grid-header {
    background-color: var(--pol-ink);
    font-weight: 600;
    font-size: .7rem;
    font-family: var(--pol-sans);
    color: #faf9f6 !important;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: left;
    border: none;
    padding: .6rem .9rem;
}

/* FIX (9/14/2026, "viewdcsimports still not have white for the grid
       header"): a DataGrid's HeaderStyle CssClass renders as a class on
       the header <tr> itself, not on each <td> -- confirmed live via
       getComputedStyle (tr.pol-grid-header had color:white, but its <td>
       children showed dark text). The sitewide "table td { color: ... }"
       rule (below, BASE/LEGACY section) matches those <td>s directly, and
       a direct match always beats an inherited value regardless of the
       ancestor rule's specificity, so the tr's white never reached the
       text. Targeting the actual <td>s here fixes it for every DataGrid
       that uses these header classes (View Employees/Stores/DCS Imports),
       not just the one page it was reported on. */
tr.HeaderStyleSortable td,
tr.pol-grid-header td {
    color: #faf9f6 !important;
}

.HeaderStyleSortable a,
th.HeaderStyleSortable a {
    display: inline;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #faf9f6 !important;
    font-family: var(--pol-sans);
    font-variant: normal;
    font-size: .7rem;
    text-decoration: none;
}

    .HeaderStyleSortable a:hover,
    th.HeaderStyleSortable a:hover {
        background: none;
        border: none;
        color: #f97316;
        text-decoration: underline;
    }

/* Generic admin list-page card/table/button chrome (9/14/2026) -- reused
   across Admin > View Employees / View Stores / View DCS Imports so all
   three pick up the same look with minimal markup changes. */
.pol-list-card {
    background: var(--pol-surface);
    border: 1px solid var(--pol-border);
    border-radius: 12px;
    padding: 1.4rem;
    max-width: 1200px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #d6d3cd transparent;
}

    /* Thin, unobtrusive scrollbar (9/14/2026, per "I don't like the
       scroller on the view dcs imports") instead of the browser's
       default wide gray scrollbar -- only shows up when a grid is
       wider than the card (e.g. View DCS Imports). */
    .pol-list-card::-webkit-scrollbar {
        height: 6px;
    }

    .pol-list-card::-webkit-scrollbar-track {
        background: transparent;
    }

    .pol-list-card::-webkit-scrollbar-thumb {
        background: #d6d3cd;
        border-radius: 4px;
    }

        .pol-list-card::-webkit-scrollbar-thumb:hover {
            background: #a8a29e;
        }

/* View DCS Imports has too many columns to fit the standard 1200px
       card width even after trimming (9/14/2026, per "we cannot have the
       scroller in there") -- --wide drops the width cap so the card can
       use the full content area, and --compact tightens cell padding/
       font-size so the grid needs less horizontal room in the first
       place. Both are additive modifiers on .pol-list-card, opt-in per
       page, so View Employees / View Stores are unaffected. */
.pol-list-card--wide {
    max-width: none;
}

.pol-list-card--compact table.pol-datagrid td,
.pol-list-card--compact table.pol-datagrid th {
    padding: .4rem .5rem;
    font-size: .78rem;
    box-sizing: border-box;
}

.pol-list-card--compact table.pol-datagrid .HeaderStyleSortable,
.pol-list-card--compact table.pol-datagrid .pol-grid-header {
    padding: .5rem .5rem;
    font-size: .62rem;
    color: #ffffff !important;
}

/* Same tr-vs-td fix as above, scoped to the compact grids
           (View DCS Imports) -- see the comment on tr.pol-grid-header td
           near the top of this file for why this is needed. */
.pol-list-card--compact table.pol-datagrid tr.HeaderStyleSortable td,
.pol-list-card--compact table.pol-datagrid tr.pol-grid-header td {
    color: #ffffff !important;
}

.pol-list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.pol-list-filter {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--pol-sans);
    font-size: .85rem;
    font-weight: 600;
    color: var(--pol-ink2);
}

    .pol-list-filter select {
        width: auto;
        min-width: 200px;
    }

a.pol-btn-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: .55rem 1.3rem !important;
    background: #1c1917 !important;
    color: #faf9f6 !important;
    border: 1px solid #1c1917 !important;
    border-radius: 8px !important;
    font-family: var(--pol-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

    a.pol-btn-link:hover {
        background: #f97316 !important;
        border-color: #f97316 !important;
    }

table.pol-datagrid {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    font-family: var(--pol-sans);
    font-size: .85rem;
    color: var(--pol-ink2);
}

    table.pol-datagrid td {
        padding: .6rem .9rem;
        border-bottom: 1px solid var(--pol-border);
    }

    /* Excluding by class alone wasn't reliable on every grid (the header
       row is the DataGrid's first row, rendered with plain <td> cells,
       and depending on how the grid renders that class it can land on
       the <tr> rather than each <td>) -- excluding the first row
       structurally guarantees the header background can never be
       overridden by the hover highlight, on any .pol-datagrid grid. */
    table.pol-datagrid tr:not(:first-child):hover td {
        background: #f5f3ef;
    }

    table.pol-datagrid a {
        color: #f97316;
        font-weight: 600;
        text-decoration: none;
    }

        table.pol-datagrid a:hover {
            text-decoration: underline;
        }

    /* ── Edit action button (View Employees / View Stores) ───────────
       Changed (9/14/2026, per "change the buttons from blue to black" /
       "make it look more uniform") from plain text link to a solid
       black pill button, matching the "Add New" button look. */
    table.pol-datagrid td.edit-cell a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #1c1917;
        color: #faf9f6 !important;
        font-weight: 600;
        font-size: .78rem;
        text-decoration: none !important;
        padding: .35rem .9rem;
        border-radius: 8px;
        transition: background .15s ease;
    }

        table.pol-datagrid td.edit-cell a:hover {
            background: #f97316;
            text-decoration: none !important;
        }

/* ── Grid action buttons (View DCS Imports: "not found" / "Revert
       Post" / "Revert MTD") ──────────────────────────────────────────
       Changed (9/14/2026, per "the button colors need to change from
       blue to black like everything else") from the sitewide blue
       A:not(:has(img)) button look to the same small black pill as the
       Edit button above -- applied directly via CssClass="pol-datagrid-btn"
       on these HyperLinks (rather than relying on cascade order against
       the sitewide rule) so it can't be quietly re-overridden later.
       Discrepancies keeps its own inline red style -- that's status
       color, not chrome, and is untouched. */
a.pol-datagrid-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #1c1917 !important;
    color: #faf9f6 !important;
    font-weight: 600;
    font-size: .72rem;
    text-decoration: none !important;
    padding: .3rem .7rem !important;
    border-radius: 6px !important;
    border: 1px solid #1c1917 !important;
    white-space: nowrap;
    margin: .1rem;
}

    a.pol-datagrid-btn:hover {
        background: #f97316 !important;
        border-color: #f97316 !important;
    }

/* a.pol-datagrid-btn-danger ADDED (9/21/2026, per explicit instruction:
   "on the view home page images, please make a delete button that still
   keeps it in the database but removes it from this page") -- same shape/
   size as a.pol-datagrid-btn, but in the site's existing --pol-red tokens
   (already used for validation/error states elsewhere) so a destructive-
   looking action reads differently from "Make Active"/"Make Inactive"/
   "Preview" at a glance, on top of the confirm() prompt on the button
   itself. */
a.pol-datagrid-btn-danger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--pol-red-bg, #fee2e2) !important;
    color: var(--pol-red, #991b1b) !important;
    font-weight: 600;
    font-size: .72rem;
    text-decoration: none !important;
    padding: .3rem .7rem !important;
    border-radius: 6px !important;
    border: 1px solid var(--pol-red-bd, #fca5a5) !important;
    white-space: nowrap;
    margin: .1rem;
}

    a.pol-datagrid-btn-danger:hover {
        background: var(--pol-red, #991b1b) !important;
        color: #fff !important;
        border-color: var(--pol-red, #991b1b) !important;
    }

/* Stacks the Actions column's two buttons vertically instead of side
       by side (9/14/2026) -- keeps that column as narrow as one button
       instead of needing room for both at once. */
.pol-datagrid-btn-stack {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
}

/* ── "Add New" style link (Admin > View Documents) ────────────── */
.Links {
    font-weight: bold;
    font-size: 11pt;
    text-transform: uppercase;
    color: gray;
    text-decoration: none;
}

.SubHeading {
    font-weight: normal;
    font-size: 12pt;
    color: #314d73;
    text-decoration: none;
}

.ReportTitle {
    font-weight: bold;
    font-size: 11pt;
    color: #314d73;
    text-decoration: none;
}

/* Page title ("Edit Employee", "Enter Sale", etc.) */
.HeaderNew {
    font-weight: bolder;
    font-family: 'Familjen Grotesk', Arial, 'Times New Roman';
    color: #1661A0;
    font-size: 25px;
}

/* ═══════════════════════════════════════════════════════════════
   LINKS
   ═══════════════════════════════════════════════════════════════ */

A:not(:has(img)) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .4rem 1rem;
    background: #1661A0;
    color: #ffffff;
    border: 1px solid #1661A0;
    border-radius: 8px;
    font-family: 'Familjen Grotesk', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    transition: background .12s ease, border-color .12s ease;
}

    A:not(:has(img)):hover {
        background: #f97316;
        border-color: #f97316;
        color: #ffffff;
    }

    A:not(:has(img)):visited {
        color: #ffffff;
    }

/* Reset GridView/DataGrid links back to plain text links,
   overriding the button-style A rule above */
.plain-link-grid a,
.plain-link-grid a:not(:has(img)) {
    display: inline;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: #78716c;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
}

    .plain-link-grid a:hover,
    .plain-link-grid a:not(:has(img)):hover {
        background: none;
        border: none;
        color: #f97316;
        text-decoration: underline;
    }

/* .text-link ADDED (9/21/2026, per explicit follow-up: "please fix the
   look especially with the blue button", re: UploadHomeImage.aspx). Root
   cause, confirmed by inspection: EVERY plain <a> tag site-wide gets the
   "A:not(:has(img))" blue pill-button treatment above by default unless
   something overrides it -- hlinkViewHomeImages sits in the middle of a
   sentence on that page and was never meant to look like a standalone
   blue call-to-action button, it just had no CssClass to override that
   sitewide default with. This resets a link back to plain inline text --
   same idea as .plain-link-grid above, just not grid-scoped, for
   paragraph copy elsewhere on the site. */
.text-link {
    display: inline;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    color: var(--pol-ink, #1c1917);
    font-weight: 600;
    text-decoration: underline;
}

    .text-link:hover {
        background: none;
        border: none;
        color: #f97316;
    }

    .text-link:visited {
        color: var(--pol-ink, #1c1917);
    }

/* ═══════════════════════════════════════════════════════════════
   FORM CONTROLS (global defaults)
   ═══════════════════════════════════════════════════════════════ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="date"],
textarea {
    width: 80%;
    box-sizing: border-box;
    font-size: 15px;
    color: #111;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
}

    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="password"]::placeholder,
    input[type="number"]::placeholder,
    input[type="search"]::placeholder,
    input[type="tel"]::placeholder,
    input[type="url"]::placeholder,
    textarea::placeholder {
        color: #9ca3af;
    }

    input[type="text"]:hover,
    input[type="email"]:hover,
    input[type="password"]:hover,
    input[type="number"]:hover,
    input[type="search"]:hover,
    input[type="tel"]:hover,
    input[type="url"]:hover,
    input[type="date"]:hover,
    textarea:hover {
        border-color: #9ca3af;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    input[type="number"]:focus,
    input[type="search"]:focus,
    input[type="tel"]:focus,
    input[type="url"]:focus,
    input[type="date"]:focus,
    textarea:focus {
        border-color: #f97316;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
    }

textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

select {
    width: 75%;
    box-sizing: border-box;
    font-size: 15px;
    color: #111;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 36px 10px 14px;
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

    select:hover {
        border-color: #9ca3af;
    }

    select:focus {
        border-color: #f97316;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
    }

/* ── Modern buttons (generic, site-wide) ─────────────────────── */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .55rem 1.3rem;
    background: #1c1917;
    color: #faf9f6;
    border: 1px solid #1c1917;
    border-radius: 8px;
    font-family: 'Familjen Grotesk', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    outline: none;
    transition: background .15s ease, border-color .15s ease, transform .08s ease, box-shadow .15s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

    button:hover,
    input[type="submit"]:hover,
    input[type="button"]:hover,
    input[type="reset"]:hover {
        background: #f97316;
        border-color: #f97316;
    }

    button:active,
    input[type="submit"]:active,
    input[type="button"]:active,
    input[type="reset"]:active {
        transform: translateY(1px);
        box-shadow: 0 1px 1px rgba(0,0,0,.06);
    }

    button:focus-visible,
    input[type="submit"]:focus-visible,
    input[type="button"]:focus-visible,
    input[type="reset"]:focus-visible {
        box-shadow: 0 0 0 3px rgba(249, 115, 22, .3);
    }

    button:disabled,
    input[type="submit"]:disabled,
    input[type="button"]:disabled,
    input[type="reset"]:disabled {
        background: #d6d3cd;
        border-color: #d6d3cd;
        color: #78716c;
        cursor: default;
        box-shadow: none;
        transform: none;
    }

    /* Secondary / low-emphasis button variant — apply with class="btn-secondary"
   for lighter actions (e.g. Remove, Pick, Cancel) */
    button.btn-secondary,
    input.btn-secondary {
        background: #faf9f6;
        color: #44403c;
        border: 1px solid #d6d3cd;
        box-shadow: none;
    }

        button.btn-secondary:hover,
        input.btn-secondary:hover {
            background: #f5f3ef;
            border-color: #a8a29e;
            color: #1c1917;
        }

/* ── Shared "form-input" class — used to make asp:TextBox and
   asp:DropDownList controls match in height/padding/font-size ──── */
.form-input {
    box-sizing: border-box;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #111;
    width: 100%;
}

/* ADDED (9/13/2026, per explicit instruction: "grey out MRC if you can't
   change it") -- .form-input had no disabled-state styling of its own, so a
   disabled control (e.g. txtMRC when Add-A-Line isn't checked -- see
   EnterSale.aspx.cs's Enabled tracking) just fell back to the browser's
   default disabled look, which isn't very visible in every browser.
   STRENGTHENED (9/13/2026, after the plain .form-input:disabled version
   wasn't visibly taking effect) -- txtMRC renders as <input type="text"
   class="form-input" disabled="disabled">, and this site has an EARLIER,
   global "input[type=\"text\"] { background: #fff; color: #111; }" rule
   (see the FORM CONTROLS section above). That rule's specificity is lower
   than a single class+pseudo-class selector on paper, but rather than
   depend on that math holding up in every browser/edge case, this now
   repeats the exact tag+attribute+class combination AND adds !important,
   so there's no ambiguity about which rule wins. Applies to every
   .form-input control, not just txtMRC. */
input[type="text"].form-input:disabled,
input.form-input:disabled,
select.form-input:disabled,
textarea.form-input:disabled {
    background: #e9ecef !important;
    color: #6b7280 !important;
    cursor: not-allowed !important;
}

select.form-input {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* REPLACED (9/21/2026, per explicit follow-up: "the upload home page
   image still has the blue button") -- the first attempt (restyling the
   file input's native ::file-selector-button/::-webkit-file-upload-button
   pseudo-element) evidently didn't take effect in whatever browser/OS
   this was checked in. That approach depends on the browser actually
   honoring CSS on a native sub-control it owns, which is inconsistent
   across browsers/OS themes -- not something to keep guessing at on a
   production page. This replaces it with a fully reliable technique
   instead: the real <input type="file"> (fileImage on
   UploadHomeImage.aspx) is made visually invisible but still present and
   functional, and a plain <label for="..."> styled as one of this site's
   real buttons sits in front of it -- clicking the label opens the native
   file picker (standard label-for-input browser behavior; the input
   itself never has to render any of its own chrome, so there is no native
   button left for any browser to draw in its own color). A small inline
   script (see UploadHomeImage.aspx) updates a plain text span with the
   chosen file's name, so the person can still see what they picked. */
.file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

label.file-picker-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .55rem 1.3rem;
    background: #1c1917;
    color: #faf9f6;
    border: 1px solid #1c1917;
    border-radius: 8px;
    font-family: var(--pol-sans, 'Familjen Grotesk', sans-serif);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

    label.file-picker-btn:hover {
        background: #f97316;
        border-color: #f97316;
    }

.file-picker-name {
    font-family: var(--pol-sans, 'Familjen Grotesk', sans-serif);
    font-size: .85rem;
    color: var(--pol-ink2, #44403c);
}

/* .date-field-group / .date-input / .date-pick-btn removed (8/25/2026) --
   these paired a text input with a JSCal2 "Pick" popup-calendar button.
   All three date fields that used them (Add/Edit Employee, Enter Sale) now
   use native <input type="date"> pickers styled by the shared
   input[type="date"] rule above, matching every other text field on those
   pages -- no separate class needed anymore. */

/* ═══════════════════════════════════════════════════════════════
   VALIDATION / ERROR STATES
   ═══════════════════════════════════════════════════════════════ */

table td span[id*="Validator"] {
    color: var(--pol-red);
    font-weight: 700;
}

.pol-validation-summary {
    background: var(--pol-red-bg);
    border: 1px solid var(--pol-red-bd);
    border-radius: 8px;
    padding: .9rem 1.2rem;
    margin-bottom: 1rem;
}

    .pol-validation-summary,
    .pol-validation-summary li {
        color: var(--pol-red);
        font-family: var(--pol-sans);
        font-size: .85rem;
    }

span[id*="req"] {
    color: var(--pol-red);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN SYSTEM — CSS VARIABLES + MODERN LAYOUT
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --pol-bg: #f0ede8;
    --pol-surface: #faf9f6;
    --pol-ink: #1c1917;
    --pol-ink2: #44403c;
    --pol-muted: #78716c;
    --pol-border: #d6d3cd;
    --pol-border-dark: #a8a29e;
    --pol-green: #166534;
    --pol-green-bg: #dcfce7;
    --pol-green-bd: #86efac;
    --pol-red: #991b1b;
    --pol-red-bg: #fee2e2;
    --pol-red-bd: #fca5a5;
    --pol-amber: #92400e;
    --pol-amber-bg: #fef3c7;
    --pol-amber-bd: #fcd34d;
    --pol-blue: #1e3a8a;
    --pol-blue-bg: #dbeafe;
    --pol-blue-bd: #93c5fd;
    --pol-mono: 'JetBrains Mono', monospace;
    --pol-sans: 'Familjen Grotesk', sans-serif;
}

/* ── Base typography ──────────────────────────────────────────── */
body {
    font-family: var(--pol-sans), Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--pol-ink2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

table td {
    font-family: var(--pol-sans), Arial, sans-serif;
    font-size: .92rem;
    color: var(--pol-ink2);
}

td[style*="font-weight:bold"],
td[style*="Font-Bold"] {
    font-size: 1rem;
    letter-spacing: .02em;
    color: var(--pol-ink);
}

h1, h2, h3 {
    font-family: var(--pol-sans), Arial, sans-serif;
    color: var(--pol-ink);
    font-weight: 700;
    letter-spacing: -.01em;
}

/* ═══════════════════════════════════════════════════════════════
   ENTER SALE FORM
   ═══════════════════════════════════════════════════════════════ */

/* Sleeker pass (9/14/2026, per explicit instruction to make the look more
   sleek) -- card gets a soft shadow instead of a flat border-only look,
   and the three colored section bands are lightened/rounded so they read
   as soft tinted zones inside one card rather than hard flat-color rows.
   Layout, IDs, and JS untouched -- purely a visual refinement of what was
   already there. */
.sale-form-card {
    box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
}

.sale-section-identity,
.sale-section-flags,
.sale-section-transaction {
    border-radius: 10px;
    overflow: hidden;
}

    .sale-section-identity td:first-child,
    .sale-section-flags td:first-child,
    .sale-section-transaction td:first-child {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .sale-section-identity td:last-child,
    .sale-section-flags td:last-child,
    .sale-section-transaction td:last-child {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

/* Card wrapper + thank-you panel (9/14/2026, matching the rest of the
   site's surface/border look -- see EnterSale.aspx for context) */
.sale-form-card {
    background: var(--pol-surface);
    border: 1px solid var(--pol-border);
    border-radius: 12px;
    padding: 1.4rem;
    max-width: 1100px;
    overflow: hidden;
}

.sale-thankyou-panel {
    display: block;
    max-width: 480px;
    background: var(--pol-surface);
    border: 1px solid var(--pol-border);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: center;
}

.sale-thankyou-message {
    font-family: var(--pol-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pol-ink);
    margin: 0 0 1.1rem;
}

a.sale-thankyou-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: .55rem 1.3rem !important;
    background: #1c1917 !important;
    color: #faf9f6 !important;
    border: 1px solid #1c1917 !important;
    border-radius: 8px !important;
    font-family: var(--pol-sans);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

    a.sale-thankyou-btn:hover {
        background: #f97316 !important;
        border-color: #f97316 !important;
    }

.sale-form-table {
    border-collapse: separate;
    border-spacing: 0;
}

.sale-section-identity {
    background: var(--pol-blue-bg);
}

    .sale-section-identity td {
        padding: 14px 16px !important;
    }

    .sale-section-identity .sale-field-label {
        color: var(--pol-blue);
    }

.sale-section-flags {
    background: var(--pol-amber-bg);
}

    .sale-section-flags td {
        padding: 14px 16px !important;
    }

    .sale-section-flags .sale-field-label {
        color: var(--pol-amber);
    }

/* ADDED (9/1/2026, per explicit instruction: "move ship to left so that it
   fits in the box of the whole screen", then "it still looks like that"
   after a display:flex-on-<tr> attempt (tried and removed above -- see git
   history / the prior file version if it's ever needed again) didn't
   visibly change anything.
   Root cause: tblSale is ONE shared HTML table across every section
   (identity: 4 cells, transaction: 2-then-3 cells), and a plain HTML table
   computes column widths across ALL its rows together. Putting flex
   directly on the flags <tr> was still fighting that table layout engine,
   since the row stayed nested inside <table style="width:100%"> --
   confirmed not to have visibly changed anything. The actual fix: the
   flags row's markup (EnterSale.aspx) was changed from 7 TableCells to a
   SINGLE spanning TableCell containing this plain nested .sale-flags-row
   div -- so the table's column-width algorithm only ever sees one cell
   here, with nothing left for it to spread unevenly, and these rules lay
   out the 7 checkboxes entirely ourselves. */
.sale-flags-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    /* CHANGED (9/1/2026, per explicit instruction: "adjust spacing between
       to fit the whole box") from a fixed 48px gap (which left the row
       clustered on the left with empty space after "Ship To") to
       space-between + width: 100% -- the 7 items now spread out to use the
       full width of the box, with gap kept as a floor so they never sit
       closer than 24px together if the box gets narrow. */
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.sale-flags-item {
    flex: 0 0 auto;
}

    .sale-flags-item .sale-field-label {
        color: var(--pol-amber);
    }

.sale-section-transaction {
    background: var(--pol-green-bg);
}

    .sale-section-transaction td {
        padding: 14px 16px !important;
    }

    .sale-section-transaction .sale-field-label {
        color: var(--pol-green);
    }

.sale-field-label {
    display: block;
    font-family: var(--pol-sans);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--pol-ink2);
    margin-bottom: 6px;
    white-space: nowrap;
}

.sale-required {
    color: var(--pol-red);
}

/* ADDED (9/9/2026, per explicit instruction: put a "?" icon next to the
   P360 Sold checkbox with an explanatory tooltip). Plain native title=""
   tooltip rather than a Bootstrap/JS tooltip component -- no re-init needed
   after UpdatePanel partial postbacks (unlike select2 elsewhere on this
   page), since it's just a static HTML attribute. */
.sale-help-icon {
    box-sizing: border-box;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    border-radius: 50%;
    border: 1.5px solid var(--pol-ink2);
    color: var(--pol-ink2);
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
    cursor: help;
    user-select: none;
}

/* ADDED (9/13/2026, per explicit instruction: as soon as an Account Number
   is typed on Enter Sale, show any other transaction under that account
   number for that Activation Date above the box, summarized with a revenue
   total). Kept visually small/quiet -- var(--pol-surface)/border tokens
   already used elsewhere on this page (see .sale-notes-section below) --
   since this is an informational aid, not a validation error. */
.sale-account-summary {
    background: var(--pol-surface);
    border: 1px solid var(--pol-border);
    border-radius: 4px;
    padding: 8px 10px;
    margin-bottom: 6px;
    font-size: .85rem;
}

.sale-account-summary-header {
    font-weight: 600;
    margin-bottom: 4px;
}

.sale-account-summary-list {
    margin: 0;
    padding-left: 18px;
}

.sale-section-divider {
    height: 1px;
    background: var(--pol-border);
    border: none;
    margin: 10px 0;
}

.sale-notes-section {
    background: var(--pol-surface);
    padding: 16px;
}

.sale-submit-row {
    padding: 16px !important;
}

/* select2 (Plan Code dropdown) height/font match to .form-input ADDED
   (9/21/2026, per explicit instruction: "make the enter sale more mobile
   friendly"). Confirmed by direct inspection: select2 had ZERO CSS rules
   anywhere in this stylesheet before this, so it was rendering at its own
   default ~13px font/28px height, out of step with every other field on
   this form (which are all 14px via .form-input, and bumped to 16px on
   mobile below) -- and a sub-16px focusable text input is exactly what
   triggers iOS Safari's auto-zoom-on-focus, which the rest of this form
   was already deliberately avoiding (see .sale-form-table .form-input in
   the mobile block below). This just brings select2's rendered box and
   its dropdown search field in line with that same standard. */
.sale-form-table .select2-container {
    width: 100% !important;
}

.sale-form-table .select2-container .select2-selection--single {
    height: auto;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
}

.sale-form-table .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    padding: 0;
    font-size: 14px;
    color: #111;
}

.sale-form-table .select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
}

.select2-dropdown .select2-search__field {
    font-size: 14px;
}

/* ── Mobile (9/14/2026, per explicit instruction: "we need to make the
   enter sale more mobile friendly") ──────────────────────────────────
   tblSale (EnterSale.aspx) is one plain HTML table using ColumnSpan to
   lay 2-4 fields side by side per row (Store/Employee/Activation Date/
   Account Number, Transaction Type/Activity Type, Phone/Plan Code/MRC).
   A browser can only shrink a table's columns so far before the fields
   themselves become too narrow to use -- there's no point where a plain
   <table style="width:100%"> "reflows"; it just keeps squeezing every
   cell into the same row. Below the phone breakpoint already used
   elsewhere on this site (see LOGIN / UNSECURED SHELL's max-width:600px
   above), every table/tr/td in this specific table is switched to
   display:block so each field becomes its own full-width stacked row
   instead -- same technique used for the DCS Imports column-width fix
   earlier, applied here to get a real single-column mobile form rather
   than a squeezed table. Only .sale-form-table is targeted (by class),
   so no other grid/table on the site is affected. */
@media (max-width: 600px) {
    .sale-form-card {
        padding: 1rem;
    }

    .sale-form-table,
    .sale-form-table tbody,
    .sale-form-table tr,
    .sale-form-table td {
        display: block;
        width: 100% !important;
    }

    /* td:first-child/:last-child (above) still resolve correctly once
       stacked -- they're based on DOM position, not visual column -- so
       each color-banded section keeps rounded top/bottom corners as one
       stacked group instead of a row. */
    .sale-section-identity td,
    .sale-section-flags td,
    .sale-section-transaction td {
        padding: 12px 16px !important;
    }

    /* Empty filler <TableCell /> cells (e.g. after MRC) collapse to
       nothing so they don't leave a blank stacked block on mobile. */
    .sale-form-table td:empty {
        display: none;
    }

    /* The Activation Date field has a fixed inline width="180px" (fine
       on desktop, cramped/off-center once this column stacks full-width
       on mobile) -- !important is required to beat an inline style. */
    .sale-form-table input[type="date"].form-input {
        width: 100% !important;
    }

    /* 16px prevents iOS Safari's automatic zoom-on-focus for any text
       input under 16px -- everything else here (dropdowns, textareas)
       picks it up too for consistent sizing, and the larger vertical
       padding gives every field a bigger, easier-to-tap touch target. */
    .sale-form-table .form-input,
    .sale-form-table textarea {
        font-size: 16px;
        padding: 11px 12px;
    }

    /* select2 (Plan Code) wasn't covered by the rule above -- it isn't a
       plain .form-input, it's select2's own generated markup (see the
       base .select2-container rules added above this media query) -- so
       it needs the same 16px/bigger-padding treatment applied explicitly
       here to match every other field once this form stacks on mobile. */
    .sale-form-table .select2-container .select2-selection--single {
        padding: 11px 12px;
    }

    .sale-form-table .select2-container .select2-selection--single .select2-selection__rendered {
        font-size: 16px;
    }

    .select2-dropdown .select2-search__field {
        font-size: 16px;
    }

    /* The 7 flag checkboxes (Is Port-in, Add-A-Line, etc.) are laid out
       by this flexbox, not table columns (see the comment on
       .sale-flags-row above) -- nowrap is what keeps them evenly spread
       across one line on desktop, but forces them to shrink/overlap on
       a phone-width screen. Wrapping lets them flow to as many lines as
       needed, each kept full readable size instead of squeezed. */
    .sale-flags-row {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 16px;
        column-gap: 20px;
    }

    /* Submit and "Add Another Sale" are the two actions someone taps to
       finish this form -- full width and taller makes them easy thumb
       targets instead of the site's normal compact inline-pill button
       size (see the generic button rule above), matching how a mobile
       form's primary action is usually sized. */
    .sale-submit-row input[type="submit"] {
        width: 100%;
        padding: .8rem 1.3rem;
        font-size: 1rem;
    }

    .sale-thankyou-panel {
        max-width: 100%;
    }

    a.sale-thankyou-btn {
        display: flex !important;
        width: 100%;
        padding: .8rem 1.3rem !important;
        font-size: 1rem;
        box-sizing: border-box;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SITE SHELL — top bar + collapsible sidebar (MasterPage.master)
   ═══════════════════════════════════════════════════════════════ */

html, body {
    height: 100%;
}

.app-topbar,
.app-sidebar,
.app-main,
.login-card,
.top-link,
.nav-item,
.user-chip,
.user-dropdown,
.sidebar-collapse-btn,
.menu-toggle {
    box-sizing: border-box;
}

.app-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--pol-ink);
    color: #faf9f6;
    padding: .3rem 1.4rem;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.app-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    min-width: 0;
}

.app-brand-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 100px;
    width: auto;
    flex-shrink: 0;
    display: block;
    margin: -24px 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
}

.app-topbar-right {
    display: flex;
    align-items: center;
    gap: .6rem;
}

/* Plain-text links inside the dark top bar (Management Portal, user menu)
   need their own treatment -- they'd otherwise pick up the global
   "A:not(:has(img))" button style meant for page content. */
.app-topbar a.top-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .8rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    color: #faf9f6;
    font-family: var(--pol-sans);
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background .12s, border-color .12s;
}

    .app-topbar a.top-link:hover {
        background: #f97316;
        border-color: #f97316;
        color: #fff;
    }

/* User menu (Change Password / Logout) */
.user-menu {
    position: relative;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    padding: .4rem .8rem;
    border-radius: 999px;
    cursor: pointer;
    color: #faf9f6;
    font-family: var(--pol-sans);
    font-size: .8rem;
    font-weight: 600;
    user-select: none;
}

    .user-chip:hover {
        border-color: #f97316;
    }

    .user-chip .caret {
        font-size: .6rem;
        color: #a8a29e;
    }

.user-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid var(--pol-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    min-width: 200px;
    overflow: hidden;
    z-index: 20;
    display: none;
}

.user-menu.open .user-dropdown {
    display: block;
}

.user-dropdown a {
    display: block !important;
    padding: .7rem 1rem !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    color: var(--pol-ink2) !important;
    font-size: .85rem !important;
    text-decoration: none !important;
    text-align: left;
}

    .user-dropdown a:hover {
        background: var(--pol-bg) !important;
        color: var(--pol-ink) !important;
    }

.menu-toggle {
    display: none;
}

/* ── Body layout ───────────────────────────────────────────────── */
.app-body {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 60px);
    background: var(--pol-bg);
}

/* ── Sidebar ───────────────────────────────────────────────────── */
.app-sidebar {
    position: relative;
    width: 190px;
    flex-shrink: 0;
    background: var(--pol-surface);
    border-right: 1px solid var(--pol-border);
    padding: 1.4rem .6rem;
    transition: width .16s ease;
}

    .app-sidebar a.nav-item {
        display: flex !important;
        align-items: center;
        gap: .7rem;
        padding: .6rem .7rem !important;
        border-radius: 8px !important;
        background: none !important;
        border: none !important;
        color: var(--pol-ink2) !important;
        text-decoration: none !important;
        font-family: var(--pol-sans);
        font-size: .86rem;
        font-weight: 600;
        line-height: 1;
        margin-bottom: .2rem;
        white-space: nowrap;
        overflow: hidden;
        transition: background .12s, color .12s;
    }

        .app-sidebar a.nav-item .ic {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: inherit;
        }

            .app-sidebar a.nav-item .ic svg {
                width: 18px;
                height: 18px;
                display: block;
            }

        .app-sidebar a.nav-item .label {
            line-height: 20px;
        }

        .app-sidebar a.nav-item:hover {
            background: var(--pol-bg) !important;
            color: var(--pol-ink) !important;
        }

        .app-sidebar a.nav-item.active {
            background: var(--pol-ink) !important;
            color: #fff !important;
        }

.sidebar-collapse-btn {
    position: absolute;
    top: 1.1rem;
    right: -12px;
    z-index: 5;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0 !important;
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    margin: 0;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1px solid var(--pol-border) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,.15) !important;
    color: var(--pol-muted) !important;
    cursor: pointer;
    font-size: 0;
    letter-spacing: normal;
    transition: border-color .12s, color .12s, box-shadow .12s;
}

    .sidebar-collapse-btn svg {
        width: 12px;
        height: 12px;
        transition: transform .16s ease;
    }

    .sidebar-collapse-btn:hover {
        border-color: var(--pol-border-dark) !important;
        color: var(--pol-ink) !important;
        box-shadow: 0 2px 6px rgba(0,0,0,.2) !important;
        transform: none !important;
    }

    .sidebar-collapse-btn:active {
        transform: none !important;
        box-shadow: 0 1px 3px rgba(0,0,0,.15) !important;
    }

/* Collapsed (icon-only) sidebar */
.app-sidebar.collapsed {
    width: 56px;
}

    .app-sidebar.collapsed a.nav-item {
        justify-content: center;
        padding: .6rem 0 !important;
        gap: 0;
    }

        .app-sidebar.collapsed a.nav-item .label {
            display: none;
        }

    .app-sidebar.collapsed .sidebar-collapse-btn svg {
        transform: rotate(180deg);
    }

/* ── Main content ──────────────────────────────────────────────── */
.app-main {
    flex: 1;
    min-width: 0;
    padding: 1.6rem 1.8rem;
}

.app-scrim {
    display: none;
}

/* ── Responsive / mobile ───────────────────────────────────────── */
@media (max-width: 900px) {
    .brand-logo {
        height: 60px;
        margin: -10px 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.14);
        color: #faf9f6;
        cursor: pointer;
        font-size: 1.1rem;
    }

    .sidebar-collapse-btn {
        display: none;
    }

    .app-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 230px;
        transform: translateX(-100%);
        transition: transform .2s ease;
        z-index: 30;
        box-shadow: 0 0 30px rgba(0,0,0,.25);
        overflow-y: auto;
    }

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

    .app-scrim.open {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.35);
        z-index: 25;
    }

    .user-chip-name {
        display: none;
    }

    .app-topbar a.top-link .top-link-label {
        display: none;
    }

    .app-main {
        padding: 1.1rem 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LOGIN / UNSECURED SHELL (MasterPageUnsecure.master)
   ═══════════════════════════════════════════════════════════════ */

.login-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--pol-ink);
    padding: 2rem 1.2rem;
}

.login-card {
    width: 100%;
    max-width: 560px;
    background: var(--pol-surface);
    border: 1px solid var(--pol-border);
    border-radius: 14px;
    padding: 2.4rem 2.2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
}

    .login-logo img {
        height: 130px;
        width: auto;
    }

@media (max-width: 600px) {
    .login-card {
        padding: 1.8rem 1.4rem;
    }

    .login-logo img {
        height: 96px;
    }
}

.login-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pol-ink);
    margin-bottom: .3rem;
}

.login-sub {
    text-align: center;
    font-size: .8rem;
    color: var(--pol-muted);
    margin-bottom: 1.6rem;
}

.login-error {
    display: block;
    background: var(--pol-red-bg);
    border: 1px solid var(--pol-red-bd);
    color: var(--pol-red) !important;
    border-radius: 8px;
    padding: .6rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.login-field {
    margin-bottom: 1.1rem;
}

    .login-field label {
        display: block;
        font-family: var(--pol-mono);
        font-size: .62rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--pol-muted);
        margin-bottom: .4rem;
    }

    .login-field input {
        width: 100% !important;
    }

.login-field-error {
    display: block;
    color: var(--pol-red);
    font-size: .75rem;
    font-weight: 600;
    margin-top: .3rem;
}

input.login-btn {
    display: block !important;
    width: 100% !important;
    text-align: center;
    margin-top: .3rem;
}

a.login-forgot {
    display: block !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    text-align: center;
    margin-top: 1.2rem;
    font-size: .78rem;
    color: var(--pol-muted) !important;
    font-weight: 600;
}

    a.login-forgot:hover {
        color: #f97316 !important;
        text-decoration: underline;
    }

/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER + ACTION CARDS (Default.aspx, Admin/Default.aspx)
   ═══════════════════════════════════════════════════════════════ */

.welcome-head {
    margin-bottom: 1.4rem;
}

    .welcome-head h2 {
        margin: 0 0 4px;
        font-size: 1.3rem;
        font-family: var(--pol-sans);
        color: var(--pol-ink);
    }

    .welcome-head p {
        margin: 0;
        color: var(--pol-muted);
        font-size: .85rem;
    }

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 720px;
}

a.action-card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    background: var(--pol-surface) !important;
    border: 1px solid var(--pol-border) !important;
    border-radius: 10px !important;
    padding: 1.6rem 1.2rem !important;
    text-decoration: none !important;
    text-transform: none !important;
    color: var(--pol-ink) !important;
    text-align: center;
    font-family: var(--pol-sans);
    transition: transform .12s, box-shadow .12s, border-color .12s;
}

    a.action-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
        border-color: var(--pol-border-dark) !important;
        background: var(--pol-surface) !important;
    }

    a.action-card .ic {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: #f97316;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto .8rem;
    }

        a.action-card .ic svg {
            width: 22px;
            height: 22px;
        }

    a.action-card.blue .ic {
        background: var(--pol-blue);
    }

    a.action-card .title {
        display: block;
        font-weight: 700;
        font-size: .95rem;
        margin-bottom: 2px;
    }

    a.action-card .desc {
        display: block;
        font-size: .75rem;
        color: var(--pol-muted);
    }
