/* ============================================
   ROCK CRE — Property Tax Calculator
   styles.css
   ============================================ */

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

/* ---- Variables ---- */
:root {
    --navy:           #2b377f;
    --navy-dark:      #1e2759;
    --navy-light:     #3d4fa0;
    --purple:         #5764b2;
    --purple-light:   #6e7dc4;
    --yellow:         #f5d83e;
    --yellow-dark:    #d4b920;

    --white:          #ffffff;
    --surface:        #f5f7fa;
    --surface-2:      #eef0f7;
    --border:         #dde0ec;
    --border-light:   #eaecf4;

    --text:           #1a2040;
    --text-muted:     #64748b;
    --text-light:     #94a3b8;

    /* Base millage type colors */
    --county-color:   #2b377f;
    --municipal-color:#5764b2;
    --school-color:   #d4b920;

    /* Special millage type colors */
    --library-color:  #0891b2;   /* cyan-600   */
    --fire-color:     #dc2626;   /* red-600    */
    --ems-color:      #16a34a;   /* green-600  */
    --sinking-color:  #9333ea;   /* purple-600 */
    --pension-color:  #ea580c;   /* orange-600 */

    --success:        #10b981;
    --warning:        #f59e0b;

    --radius-sm:      6px;
    --radius-md:      10px;
    --radius-lg:      16px;
    --radius-xl:      22px;

    --shadow-sm:      0 1px 3px rgba(43,55,127,0.08);
    --shadow-md:      0 4px 16px rgba(43,55,127,0.12);
    --shadow-lg:      0 12px 40px rgba(43,55,127,0.18);
    --transition:     0.2s ease;
}

/* ---- Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: var(--surface);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ---- Widget Wrapper ---- */
.widget-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--surface);
}

.widget-container {
    width: 100%;
    max-width: 960px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* ============================================
   HEADER
   ============================================ */
.widget-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--purple) 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.widget-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.widget-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 216, 62, 0.18);
    border: 1.5px solid rgba(245, 216, 62, 0.35);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.widget-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--yellow);
}

.widget-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.widget-subtitle {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.widget-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.logo-rock {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 3px;
    line-height: 1;
}

.logo-cre {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ============================================
   BODY LAYOUT
   ============================================ */
.widget-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 540px;
}

/* ============================================
   INPUT COLUMN
   ============================================ */
.input-column {
    padding: 2rem;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- Form Sections --- */
.form-section {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--navy);
    color: var(--yellow);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    font-family: 'Open Sans', Arial, sans-serif;
    letter-spacing: 0;
    flex-shrink: 0;
}

/* --- Form Groups --- */
.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.4rem;
}

.required-dot {
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    margin-left: 1px;
}

.field-hint {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.35rem;
    line-height: 1.4;
}

/* --- Select --- */
.select-wrapper {
    position: relative;
}

.form-select {
    width: 100%;
    padding: 0.65rem 2.5rem 0.65rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(87, 100, 178, 0.12);
}

.form-select:disabled {
    background: var(--surface);
    color: var(--text-light);
    cursor: not-allowed;
}

.form-select option {
    font-weight: 400;
}

.select-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
    pointer-events: none;
    transition: stroke var(--transition);
}

.select-wrapper:focus-within .select-arrow {
    stroke: var(--purple);
}

/* --- Text/Number Input --- */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
}

.input-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    user-select: none;
}

.form-input {
    flex: 1;
    padding: 0.65rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    text-align: right;
}

.form-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(87, 100, 178, 0.12);
    z-index: 1;
}

.form-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

/* ============================================
   MILLAGE SECTION
   ============================================ */
.millage-section {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.millage-section .section-title {
    margin-bottom: 1rem;
}

/* Loading state */
.millage-loading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.millage-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

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

/* Empty state */
.millage-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.25rem 0.5rem;
    text-align: center;
    color: var(--text-light);
}

.millage-empty svg {
    width: 28px;
    height: 28px;
    opacity: 0.4;
}

.millage-empty p {
    font-size: 0.78rem;
    line-height: 1.5;
    max-width: 220px;
}

/* ============================================
   MILLAGE GRID — 2 fixed columns, variable rows
   ============================================ */
.millage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

/* Special cards container spans both columns so cards
   continue the 2-col flow naturally */
#specialMillageCards {
    display: contents; /* lets children participate in the parent grid */
}

.millage-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

/* Colored top accent bar */
.millage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

/* Base millage card accent colors */
.county-card::before    { background: var(--county-color); }
.municipal-card::before { background: var(--municipal-color); }
.school-card::before    { background: var(--school-color); }
.total-card::before     { background: linear-gradient(90deg, var(--navy), var(--purple)); }

/* Special millage card accent colors */
.library-card::before      { background: var(--library-color); }
.fire-card::before         { background: var(--fire-color); }
.ems-card::before          { background: var(--ems-color); }
.sinking-fund-card::before { background: var(--sinking-color); }
.pension-card::before      { background: var(--pension-color); }

/* Special card subtle background tint */
.special-card {
    background: var(--surface);
}

.millage-card-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.millage-card-value {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1;
    letter-spacing: 0.5px;
}

.total-card .millage-card-value {
    color: var(--purple);
    font-size: 1.45rem;
}

/* Special card value colors */
.library-card .millage-card-value      { color: var(--library-color); }
.fire-card .millage-card-value         { color: var(--fire-color); }
.ems-card .millage-card-value          { color: var(--ems-color); }
.sinking-fund-card .millage-card-value { color: var(--sinking-color); }
.pension-card .millage-card-value      { color: var(--pension-color); }

.millage-card-unit {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Total card always spans both columns */
#totalMillageCard {
    grid-column: 1 / -1;
}

/* Millage note */
.millage-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.875rem;
    padding: 0.6rem 0.75rem;
    background: rgba(245, 216, 62, 0.08);
    border: 1px solid rgba(245, 216, 62, 0.3);
    border-radius: var(--radius-sm);
}

.millage-note svg {
    width: 13px;
    height: 13px;
    stroke: var(--yellow-dark);
    flex-shrink: 0;
    margin-top: 1px;
}

.millage-note span {
    font-size: 0.7rem;
    color: #7a6200;
    line-height: 1.5;
}

/* Fallback warning */
.millage-fallback-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.6rem 0.75rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-sm);
}

.millage-fallback-note svg {
    width: 13px;
    height: 13px;
    stroke: var(--warning);
    flex-shrink: 0;
    margin-top: 1px;
}

.millage-fallback-note span {
    font-size: 0.7rem;
    color: #92400e;
    line-height: 1.5;
}

/* ============================================
   ACTION BUTTONS
   ============================================ */
.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-calculate {
    flex: 1;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
}

.btn-calculate:hover:not(:disabled) {
    background: var(--purple);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(43,55,127,0.3);
}

.btn-calculate:active:not(:disabled) {
    transform: translateY(0);
}

.btn-calculate:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.btn-reset {
    background: var(--white);
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    padding: 0.7rem 1rem;
}

.btn-reset:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

.btn-print {
    width: 100%;
    justify-content: center;
    background: var(--surface);
    color: var(--navy);
    border: 1.5px solid var(--border);
}

.btn-print:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ============================================
   RESULTS COLUMN
   ============================================ */
.results-column {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

/* --- Placeholder --- */
.results-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    color: var(--text-muted);
}

.placeholder-icon {
    width: 70px;
    height: 70px;
    background: var(--surface);
    border: 2px dashed var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.placeholder-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--border);
}

.results-placeholder h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.results-placeholder p {
    font-size: 0.8rem;
    color: var(--text-light);
    max-width: 220px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Checklist */
.placeholder-checklist {
    list-style: none;
    width: 100%;
    max-width: 240px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-light);
    transition: color var(--transition);
    padding-left: 15%;
}

.check-item.done {
    color: var(--text-muted);
}

.check-icon {
    font-size: 1rem;
    line-height: 1;
    transition: all var(--transition);
    min-width: 18px;
    text-align: center;
}

.check-icon.unchecked { color: var(--border); }
.check-icon.checked   { color: var(--success); }

/* --- Results Panel --- */
.results-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: resultsIn 0.35s ease;
}

@keyframes resultsIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Context row */
.results-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border-light);
}

.context-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
}

.context-location svg {
    width: 14px;
    height: 14px;
    stroke: var(--purple);
    flex-shrink: 0;
}

.context-assessed {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.context-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.context-value {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--surface-2);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

/* Annual Total Card */
.annual-total-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.annual-total-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(245,216,62,0.08);
    border-radius: 50%;
}

.annual-total-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
}

.annual-total-amount {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.annual-total-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
}

/* ============================================
   BREAKDOWN TABLE
   ============================================ */
.breakdown-section {
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.breakdown-col-headers {
    display: grid;
    grid-template-columns: 1fr 80px 100px;
    padding: 0.45rem 1rem;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
}

.breakdown-col-headers span {
    font-size: 0.63rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breakdown-col-headers span:nth-child(2),
.breakdown-col-headers span:nth-child(3) {
    text-align: right;
}

.breakdown-table {
    padding: 0.25rem 0;
}

.breakdown-row {
    display: grid;
    grid-template-columns: 1fr 80px 100px;
    align-items: center;
    padding: 0.55rem 1rem;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition);
}

.breakdown-row:hover {
    background: var(--surface-2);
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-total-row {
    background: var(--surface-2);
    font-weight: 700;
}

.breakdown-total-row .breakdown-label {
    color: var(--navy);
    font-weight: 700;
}

.breakdown-total-row .breakdown-amount {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
}

.breakdown-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text);
    font-weight: 500;
}

/* Breakdown dots */
.breakdown-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Base type dots */
.county-dot    { background: var(--county-color); }
.municipal-dot { background: var(--municipal-color); }
.school-dot    { background: var(--school-color); }

/* Special type dots */
.library-dot      { background: var(--library-color); }
.fire-dot         { background: var(--fire-color); }
.ems-dot          { background: var(--ems-color); }
.sinking-fund-dot { background: var(--sinking-color); }
.pension-dot      { background: var(--pension-color); }

.breakdown-millage {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.breakdown-amount {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-align: right;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Effective Rate */
.effective-rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.875rem;
    background: rgba(43,55,127,0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
}

.effective-rate-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.effective-rate-value {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
}

/* Results Actions */
.results-actions {
    margin-top: auto;
    padding-top: 0.25rem;
}

/* Disclaimer */
.results-disclaimer {
    font-size: 0.68rem;
    color: var(--text-light);
    line-height: 1.55;
    padding: 0.75rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

/* ============================================
   FOOTER
   ============================================ */
.widget-footer {
    background: var(--navy-dark);
    padding: 0.875rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
}

.footer-sep {
    opacity: 0.3;
}

/* ============================================
   UTILITIES
   ============================================ */
.hidden { display: none !important; }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    body { background: white; }

    .widget-wrapper {
        padding: 0;
        min-height: auto;
    }

    .widget-container {
        max-width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .widget-body {
        grid-template-columns: 1fr;
    }

    .input-column {
        display: none;
    }

    .results-column {
        padding: 1.5rem;
    }

    .results-actions,
    .widget-footer {
        display: none;
    }

    .annual-total-card {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
    .widget-wrapper {
        padding: 0;
        align-items: stretch;
    }

    .widget-container {
        border-radius: 0;
    }

    .widget-header {
        padding: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .widget-logo {
        align-items: flex-start;
    }

    .widget-body {
        grid-template-columns: 1fr;
    }

    .input-column {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 1.5rem;
    }

    .results-column {
        padding: 1.5rem;
    }

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

    .widget-footer {
        padding: 0.75rem 1.25rem;
    }
}
