/* ================================================================
   SITE.CSS  -  CORE SITE-WIDE STYLES
   ================================================================
   Consumes variables from client.css.
   DO NOT define :root variables in this file.

   Sections:
       1.  Fonts
       2.  Base / Body
       3.  Layout
       4.  Links
       5.  Buttons
       6.  Forms
       7.  Cards & Tables
       8.  Alerts & Notifications
       9.  Page Notifications (site-wide + user messages)
      10.  Navigation (non-header)
      11.  Bootstrap Table
      12.  Responsive overrides
   ================================================================ */


/* ================================================================
   1. FONTS
   ================================================================ */

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/SourceSansPro-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../font/SourceSansPro-Bold.ttf') format('truetype');
}


/* ================================================================
   2. BASE / BODY
   ================================================================ */

body {
    background-color: var(--client-body-bg);
    font-size: 16px !important;
    line-height: 1.375 !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    color: #3a3a3a;
    letter-spacing: 1px;
}

/* Mobile: full-height page */
@media (max-width: 767px) {
    body {
        position: relative;
        min-height: 100%;
        margin-bottom: 0;
    }
}


/* ================================================================
   3. LAYOUT
   ================================================================ */

/* Remove Bootstrap's default horizontal padding on containers */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    padding-right: 0;
    padding-left: 0;
}

/* IE 10+ fix: removes unintended bottom margin on navbar-brand */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .navbar-brand { margin-right: 0; }
}

/* Flex-grow content wrapper so footer stays at page bottom */
.page-content-wrapper {
    flex: 1 0 auto;
}


@media (max-width: 767px) {
    .mobile-fixed-footer-content {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 10000 !important;
        padding: 10px 5px;
        background: #ffffff;
        border: none !important;
        border-top: 2px solid #fc9a2d !important;
        border-radius: 0 !important;
        text-align: center !important;
    }

    /* Alias - same breakpoint guard required. */
    .fixed-footer-content {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 10000 !important;
        padding: 10px 5px;
        background: #ffffff;
        border: none !important;
        border-top: 2px solid #fc9a2d !important;
        border-radius: 0 !important;
        text-align: center !important;
    }
}


/* ================================================================
   4. LINKS
   ================================================================ */

a,
.text-link,
.btn-link.client {
    color: var(--client-link-color) !important;
    text-decoration: underline;
}
a:hover,
.text-link:hover {
    color: var(--client-link-hover-color) !important;
}
a:focus-visible {
    outline: 3px solid var(--client-link-color);
    outline-offset: 2px;
}

/* Nav and dropdown links: suppress underline */
.dropdown-menu a,
.main-header a,
.page-link,
.page-link:hover,
a.btn-primary,
a.btn-secondary {
    text-decoration: none !important;
}

/* Page link / pagination color */
.page-link,
.page-link:hover,
.client-primary-hover:hover {
    color: var(--client-link-color) !important;
}

.alert-danger {
  color: #4a0000 !important; /* Darker red for text */
  background-color: #fff5f5 !important;    /* Lighter background */
  border-color: #dc3545;
}


/* ================================================================
   5. BUTTONS
   ================================================================ */

/* Primary */
.btn-primary.client {
    color: var(--client-btn-primary-text) !important;
    background-color: var(--client-btn-primary-bg);
    border-color:     var(--client-btn-primary-border);
    text-decoration: none;
}
.btn-primary.client:hover,
.btn-primary.client:focus {
    color: #ffffff !important;
    background-color: var(--client-btn-primary-hover-bg) !important;
    border-color:     var(--client-btn-primary-hover-bg) !important;
}
.btn-primary.client:not(:disabled):not(.disabled).active,
.show > .btn-primary.client.dropdown-toggle {
    color: #ffffff !important;
    background-color: var(--client-btn-primary-active-bg) !important;
    border-color:     var(--client-btn-primary-active-bg) !important;
}
.btn-primary.client:focus-visible {
    outline: 3px solid var(--client-btn-primary-bg);
    outline-offset: 2px;
}

/* Secondary */
.btn-secondary.client,
.bg-secondary.client {
    color: var(--client-btn-secondary-text) !important;
    background-color: var(--client-btn-secondary-bg) !important;
    border-color:     var(--client-btn-secondary-border) !important;
    text-decoration: none;
}
.btn-secondary.client:hover,
.btn-secondary.client:focus {
    color: #ffffff !important;
    background-color: var(--client-btn-primary-hover-bg) !important;
    border-color:     var(--client-btn-primary-hover-bg) !important;
}

/* Inline text button */
.btn-link.client {
    font-size: inherit;
    color: var(--client-link-color) !important;
    border-bottom: 1px solid var(--client-link-color);
    border-radius: 0;
    padding: 0;
    line-height: 0.8;
    text-decoration: none;
}

/* Active pagination link */
.page-item.active .page-link {
    color: var(--client-btn-primary-text) !important;
    background-color: var(--client-btn-primary-bg);
    border-color:     var(--client-btn-primary-border);
}

/* Text color helpers */
.text-primary.client  { color: var(--client-btn-primary-bg) !important; }
.text-secondary.client { color: var(--client-btn-secondary-bg) !important; }


/* ================================================================
   6. FORMS
   ================================================================ */

input,
select,
.input-group-text {
    border-radius: 0 !important;
}

select option:disabled {
    color: #cacaca;
    background: #eeeeee;
}

label {
    margin-bottom: 0.1rem;
}

/* Form validation feedback */
.invalid-feedback {
    margin-top: 5 !important;
    color: darkred !important;
    position: relative !important; /* override mdb */
    padding-top: 10px;                                                    
}

.input-feedback {
    width: 100%;
    font-size: 80%;
    color: #3a3a3a;
}

/* Search form: select element normalization */
.search-type-select {
    font-size: 1rem;
    padding: 5px 2px;
    border-color: rgb(189, 189, 189);
    color: rgb(79, 79, 79);
}


/* ================================================================
   7. CARDS & TABLES
   ================================================================ */

.card,
.table {
    border: 1px solid #f9fafd !important;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-shadow:         0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    border-radius: 0.375rem !important;
}
.card.border-0 {
    border: none !important;
}

/* Search result table header */
.search-result-list thead tr th {
    padding-top: 5px;
    padding-bottom: 5px;
}

/* Cart / account list separators */
#cart-line-items .account-list:last-child,
.cart-container .account-list:last-child {
    border-bottom: none !important;
}

/* Column highlight variants */
.col-unique-0 { background-color: rgba(74, 169, 81, 0.1); }
.col-unique-1 { background-color: rgba(252, 154, 45, 0.1); }
.col-unique-2 { background-color: hsla(266, 33%, 52%, 0.1); }


/* ================================================================
   8. ALERTS
   ================================================================ */

.alert-danger {
    color: #f9f9f9;
    background-color: #db414f;
    border-color:     #db414f;
}
.alert-danger hr { border-top-color: #bd3743; }

.alert-warning {
    color: #4f3b00;
    background-color: #fdd87f;
    border-color:     #fdd87f;
}
.alert-warning hr { border-top-color: #ecae19; }

.alert-info {
    color: #ffffff;
    background-color: #0092d9;
    border-color:     #0092d9;
}
.alert-info hr { border-top-color: #0b80b9; }

.alert-success {
    color: #ffffff;
    background-color: #4ba952;
    border-color:     #4ba952;
}
.alert-success hr { border-top-color: #3d9744; }


/* ================================================================
   9. PAGE NOTIFICATION SECTIONS
   Site-wide notices and per-page user messages.
   ================================================================ */

#site-notifications {
    /* Always visible when rendered; hidden by JSP when empty */
}

#site-notifications .notification-item {
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

#user-messages {
    /* Per-page error/info; always visible when rendered */
}

#user-messages .alert {
    margin-bottom: 0;
    border-radius: 0;
}


/* ================================================================
   10. NAVBAR LOGO (alternate layout - used if seal is hidden)
   ================================================================ */

.nav-bar-logo {
    width: 303px;
    height: 90px;
    margin-bottom: 10px;
    background-image: url('../img/logo_colored.png');
    background-repeat: no-repeat;
    background-size: contain;
}

/* Collapse logo on mobile */
@media (max-width: 767px) {
    .nav-bar-logo {
        visibility: collapse !important;
        height: 77px !important;
        width: 10px;
    }
    .main-header .navbar-nav {
        text-align: center;
    }
    .main-header .navbar-nav:first-child {
        padding: 0;
    }
    .top-print-menu {
        border: none !important;
    }
    .cart-pay-card {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}

@media (max-width: 991px) {
    .main-header .navbar-nav {
        padding: 10px;
    }
    .bootstrap-table .fixed-table-container .table tbody tr .card-view .card-view-value {
        background-color: #f8f9fa !important;
        padding: 5px !important;
    }
    #search-result-list .card-view {
        padding: 2px;
    }
}


/* ================================================================
   11. BOOTSTRAP TABLE  (general; toolbar/pagination in header.css)
   ================================================================ */

.bootstrap-table .fixed-table-container .table tbody tr .card-view .card-view-title {
    /* mobile card-view title width set at narrow breakpoint below */
}

@media (max-width: 767px) {
    .bootstrap-table .fixed-table-container .table tbody tr .card-view .card-view-title {
        min-width: 37% !important;
    }
}


/* ================================================================
   12. RESPONSIVE UTILITY OVERRIDES
   ================================================================ */

@media (min-width: 767px) {
    .bg-md-light         { background-color: #f8f9fa !important; }
    .border-sm-top       { border-top: 1px solid #dee2e6 !important; }
    .border-sm           { border: 1px solid #dee2e6 !important; }
    .text-sm-client      { color: var(--client-btn-primary-bg) !important; }
    .font-weight-sm-bold { font-weight: 700 !important; }
    .position-sm-relative { position: relative !important; }
}

@media (max-width: 575px) {
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        padding-right: 1px;
        padding-left: 1px;
    }
    .row {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    /* Remove column gutters at smallest breakpoint */
    .col, [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Search hints section (toggled via JS) */
#search-form hr  { margin-top: 1.5rem; }
#search-hints    { display: var(--client-index-search-hints-display) !important; }

/* Misc spacing helpers */
.p-1-small       { padding: 0.1rem !important; }
.line-height-0   { line-height: 0 !important; }
.font-weight-medium { font-weight: 600 !important; }
.message-placeholder:empty { display: none !important; }
.year-col        { width: 160px; }

/* Transition helpers */
.transition div { position: relative; top: 0 !important; }
.transition.ease-out div { transition: all 0.3s ease-out; }
.transition .invisible { top: 100% !important; }


/* ================================================================
   SEARCH RESULTS  (search-result.jsp)
   ================================================================ */

/* Account number link in search result table */
.result-account-link {
    font-weight: 600;
}

#checkout-element.fixed-footer-content {
    color: var(--client-checkout-text);
    background: var(--client-checkout-background);
    padding-bottom: var(--client-checkout-padding-bottom);
    border-top: var(--client-checkout-border-top);
/*
    background:#f2f0f0; border-top: 1px solid black; padding-bottom: 15px; color: green; bottom: 0px;

    --client-checkout-text:         teal;
    --client-checkout-background:   #f2f0f0;
    --client-checkout-padding:      auto auto 40px auto;
    --client-checkout-border-top:   5px dotted yellow;
*/

}



/* ================================================================
   CART / PAYMENT FLOW  (cart.jsp, entry.jsp, verify.jsp, usio.jsp)
   ================================================================ */

/* Payment amount validation feedback positioning */
input.payment-amount + .failed-validation {
    margin-top: 30px !important;
    font-size: 11px;
}

/* Account description line below account number link */
.account-description {
    font-size: 13px;
}

/* Wizard button width */
.wizard-btn {
    width: 100px;
}

/* ----------------------------------------------------------------
   USIO PAYMENT RESULT  (usio.jsp)
   ---------------------------------------------------------------- */

/* Show/hide error vs success panels using CSS class toggling */
#payment-result-panel div#display-error   { display: none; }
#payment-result-panel div#display-success { display: block; }
#payment-result-panel.error-occurred div#display-error   { display: block; }
#payment-result-panel.error-occurred div#display-success { display: none; }

/* Step detail bar (Usio legacy panel styling) */
#payment-result-panel .step-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background-color: var(--client-header-bg);
    padding: 7px 10px;
}

/* Reference ID display on success */
.payment-reference-id {
    color: darkblue;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Convenience fee disclaimer */
.fee-disclaimer {
    color: #cc0000;
    font-style: italic;
    margin-top: 10px;
}

/* ----------------------------------------------------------------
   VERIFY CONTACT CARD  (verify.jsp)
   ---------------------------------------------------------------- */

.contact-card {
    padding: 0.5rem 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4a5568;
    padding: 0;
}

.contact-item.address {
    align-items: flex-start;
}

.contact-item.address svg {
    margin-top: 0.2rem;
}

.contact-item p {
    margin-bottom: 0.75rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    vertical-align: top;
    color: #4299e1;
    margin-right: 0.75rem;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.contact-text {
    font-size: 0.95rem;
    line-height: 1.4;
    word-break: break-word;
}

/* ----------------------------------------------------------------
   PRINT SUPPRESSION (usio.jsp - hide non-essential elements on print)
   ---------------------------------------------------------------- */
@media print {
    .do-not-print { display: none !important; }
}


/* ================================================================
   SCHEDULED PAYMENT ENTRY  (webpay/scheduled/usio/entry.jsp)
   ================================================================ */

/* Payment schedule select alignment */
#payment-schedule option { text-align: center; }
#payment-schedule select {
    border-color: #bdbdbd;
    padding: 3px 6px;
}
#payment-schedule select:focus { border-color: #3b71ca; }

/* Date field label alignment - shared across schedule sections */
.schedule-date-label {
    display: inline-block;
    margin-left: 30px;
    width: 110px;
}

/* Fixed-width date input */
.schedule-date-input { width: 150px; }

/* Section sub-headings within the schedule selector */
.schedule-section-heading {
    font-size: 15px;
    color: darkblue;
    font-weight: bold;
}

/* Per-account installment eligibility note */
.installment-note {
    font-size: 11px;
    color: darkred;
    margin-top: 20px;
    font-weight: bold;
}

/* Schedule note block (indented bullet-style text) */
.schedule-note {
    color: darkred;
    font-weight: bold;
    padding-left: 45px;
    text-indent: -45px;
}

/* Read-only inputs visually distinguished */
input:read-only { background-color: #eae7e7; }




/* ----------------------------------------------------------------
   State selector
   ---------------------------------------------------------------- */
select#state  { padding-top:6px; padding-bottom: 6px; background-color: white; 
                border-width: 1px; border-color: rgb(189, 189, 189); border-style: solid;
                }
select#state:hover  { padding-top:5px; padding-bottom: 5px; background-color: white; 
                border-width: 2px; border-color: rgb(59, 113, 202); 
                }

/* ----------------------------------------------------------------
   Weekday selector  (radio-as-button strip)
   ---------------------------------------------------------------- */

.weekdays-list {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    margin-left: -5px;
}
.weekdays-list :first-child { border-left: 1px solid #bdbdbd; }
.weekdays-list :last-child  { border-right: 1px solid #bdbdbd; }

div#weekdays input[type=radio] { display: none; }

div#weekdays .weekdays-list label {
    position: relative;
    display: block;
    padding: 0.4rem 0.5rem 0.4rem 0.4rem;
    line-height: 1.1;
    color: black;
    background-color: #ffffff;
    border: 1px solid #bdbdbd;
    cursor: pointer;
}
div#weekdays .weekdays-list label:hover { background-color: #eeeeee; }

div#weekdays .weekdays-list input[name='weekday']:checked ~ label {
    background-color: #e5e2e2;
    color: darkred;
}
div#weekdays .weekdays-list input[name='weekday']:checked ~ label:hover {
    cursor: default;
}

/* Validation feedback font */
.invalid-feedback { font-weight: bold; }

/* ----------------------------------------------------------------
   Schedule result panel  (usio.jsp - scheduled payment result)
   ---------------------------------------------------------------- */

/* CSS-class-driven show/hide for scheduled payment result panels.
   Mirrors the immediate-payment usio.jsp pattern. */
#sched-result-panel div#display-error   { display: none; }
#sched-result-panel div#display-success { display: block; }
#sched-result-panel.error-occurred div#display-error   { display: block; }
#sched-result-panel.error-occurred div#display-success { display: none; }

/* ----------------------------------------------------------------
   Verify - schedule summary display (verify.jsp)
   ---------------------------------------------------------------- */

/* Validation error in summary panel */
.schedule-validation-error {
    font-size: large;
    color: darkblue;
    font-weight: bold;
    font-style: italic;
}


/* ================================================================
   REPORT PAGES  (reports/ subfolder)
   ================================================================ */

/* Jurisdiction table - right-align numeric columns */
#jurisdiction-data tr :nth-child(2),
#jurisdiction-data tr :nth-child(3),
#jurisdiction-data tr :nth-child(4),
#jurisdiction-data tr :nth-child(6) { text-align: right; }

/* Levy due table - summary/detail toggle button group */
.detail-toggle-group {
    display: inline-flex;
    border-radius: 0;
}

/* Reprint receipt link - inherits cursor-pointer from utility.css */
.reprint-link { cursor: pointer; }


/* ================================================================
   E-STATEMENT REGISTRATION  (requests/estatement/)
   ================================================================ */

/* Account summary card - label style */
#account-summary label {
    font-weight: bold;
    font-size: 0.8rem;
    font-style: italic;
}

/* Account info value text */
.account-info-value { font-size: 0.9rem; }

/* Registration deadline notice */
.registration-deadline {
    padding-top: 15px;
    padding-bottom: 15px;
    color: darkred;
    text-align: center;
}

/* Owner certification radio group - validation feedback spacing */
#owner-certification div.invalid-feedback,
#owner-certification div.failed-validation { margin-top: 15px !important; }

/* Terms and conditions ordered list */
ol.terms-list li { margin-bottom: 15px; }


/* ================================================================
   WHAT-IF TAX CALCULATOR  (requests/whatif/whatif.jsp)
   ================================================================ */

/* Scoping class applied to the whole calculator section */
.whatif-calc address {
    white-space: pre;
    text-overflow: ellipsis;
    overflow: hidden;
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Market-value input */
.whatif-market-value {
    text-align: right;
    border-radius: 6px;
    padding-right: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 200px;
}

/* Section heading inside the calculator card */
.whatif-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 6px;
}

/* Label hover - scoped to the calculator only */
.whatif-calc label:hover {
    cursor: pointer;
    font-weight: bold;
    color: var(--client-btn-primary-bg);
}
.whatif-calc label.is-selected {
    color: var(--client-btn-primary-bg);
    font-weight: bold;
}
.whatif-calc label[for=""]:hover {
    cursor: default;
    font-weight: normal;
    color: #666;
}

/* Optional jurisdiction select element */
.whatif-calc select.alt-jurisdiction-select {
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* ----------------------------------------------------------------
   Results table
   ---------------------------------------------------------------- */

.levy-table-wrapper { overflow-x: auto; }

table.levy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

table.levy-table th,
table.levy-table td { vertical-align: middle; padding: 4px 6px; }

/* Column widths */
.levy-table .col-check   { width: 40px;  text-align: center; }
.levy-table .col-name    {
    min-width: 160px;
    max-width: 240px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
}
.levy-table .col-rate    { white-space: nowrap; text-align: right; padding-right: 12px; }
.levy-table .col-num     { white-space: nowrap; text-align: right; padding-right: 12px; }

/* "Current" header / footer accent */
.levy-table .current-group-header {
    text-align: right;
    padding-right: 12px;
    border-top: 2px solid #6c757d;
    border-bottom: 2px solid #6c757d;
}
.levy-table .current-group-footer {
    text-align: right;
    padding: 8px 12px 8px 0;
    border-top: 2px solid #6c757d;
    font-style: italic;
    color: #495057;
}

/* "Estimated" header / footer accent - uses client brand color */
.levy-table .est-group-header {
    text-align: right;
    padding-right: 12px;
    border-top: 2px solid var(--client-btn-primary-bg);
    border-bottom: 2px solid var(--client-btn-primary-bg);
    color: var(--client-btn-primary-bg);
}
.levy-table .est-group-footer {
    text-align: right;
    padding: 8px 12px 8px 0;
    border-top: 2px solid var(--client-btn-primary-bg);
    color: var(--client-btn-primary-bg);
    font-style: italic;
    font-weight: 600;
}

/* Estimated value cells */
.levy-table .estimated-exemption,
.levy-table .estimated-levy {
    color: var(--client-btn-primary-bg);
    font-weight: 600;
}

/* Placeholder state - before first estimate is run */
.levy-table .est-placeholder {
    color: #adb5bd;
    font-style: italic;
    font-weight: normal;
}

/* Separator rows (optional jurisdiction rows) */
.levy-table .row-spacer td { line-height: 40%; border: none; padding: 0; }

/* First data row in each tbody gets a touch more top padding */
.levy-table tbody tr:first-child td { padding-top: 8px; }

/* Alternate section separator within tbody */
.levy-table tbody:nth-child(2) tr.section-divider td {
    border-top: 1px solid #dee2e6;
}
.levy-table tbody tr:last-child td { border-bottom: none; }

/* Estimate button loading-state toggled via CSS class */
#estimate-control-block #estimate-taxes-loading        { display: none; }
#estimate-control-block.loading #estimate-taxes         { display: none; }
#estimate-control-block.loading #estimate-taxes-loading { display: inline-block !important; }


/* ================================================================
   SCHEDULE MANAGEMENT  (webpay/scheduled/manage/)
   ================================================================ */

/* Instruction / notice block - replaces bare bare alert divs */
.sched-notice {
    max-width: 520px;
    margin: 0 auto;
}

/* Status page icon */
.sched-status-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Schedule card - one card per active schedule */
.schedule-card .card-header {
    background-color: #f8f9fa;
}

/* Summary row labels */
.schedule-card .field-label {
    font-weight: 600;
    color: #495057;
    width: 110px;
    flex-shrink: 0;
}

/* Account detail rows inside each schedule card */
.schedule-card .account-row {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Frequency badge */
.freq-badge {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Verification form container - keeps form narrow and centered */
.verify-form-card {
    max-width: 420px;
    margin: 0 auto;
}

/* ================================================================
   CERTIFIED PAYMENT REDIRECT  (webpay/certified/certified.jsp)
   ================================================================ */

/* Show/hide manual vs auto-redirect notice blocks.
   Default (no .enabled class): manual notice visible, auto hidden.
   With .enabled class added by the JS countdown: auto visible, manual hidden. */
#redirectNotice #manualRedirectNotice { display: block; }
#redirectNotice #autoRedirectNotice   { display: none;  }

#redirectNotice.enabled #manualRedirectNotice { display: none;  }
#redirectNotice.enabled #autoRedirectNotice   { display: block; }

code { color: #58151c; }

