/* -------------------------------------------------- */
/* UNIVERSAL CIVIC GLASS — the creeping membrane      */
/* -------------------------------------------------- */

.civic-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    background: rgba(255, 255, 255, 0.35); /* translucent, stable */
    border: 1px solid rgba(255, 255, 255, 0.25); /* soft civic edge */

    border-radius: 16px; /* farmhouse geometry */
    box-shadow: 0 2px 4px rgba(0,0,0,0.08); /* subtle grounding */

    padding: 20px 32px;
}


/* -------------------------------------------------- */
/* UNIVERSAL ABORT ROW LAYOUT                         */
/* -------------------------------------------------- */

.abort-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    /* This is the “creep” — not fixed, not stuck, just present */
    padding: 20px 0;
    opacity: 0.9;

    /* No margin-top here — spacing stays local per page */
}


/* -------------------------------------------------- */
/* UNIVERSAL ABORT LINK STYLING                       */
/* -------------------------------------------------- */

.abort-link {
    color: var(--deep-evergreen); /* civic ink */
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.abort-link:hover {
    text-decoration: underline;
}
