:root {
    --t5-navy: #002D62;
    --t5-navy-dark: #001a3a;
    --t5-gold: #D4AF37;
    --t5-bg: #F8F9FA;
    --t5-muted: #6c757d;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--t5-bg);
}

.login-page-main {
    flex: 1 0 auto;
    padding-top: 2rem;
}

/* Top utility bar */
.topbar {
    background: var(--t5-navy) !important;
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
}

.topbar a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 400;
}

.topbar a:hover {
    opacity: 0.9;
}

.topbar .follow-label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
}

.topbar .social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 6px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff !important;
    font-size: 0.8rem;
}

.topbar .social-circle:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Announcement */
.topbar .announce-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--t5-gold);
    color: var(--t5-navy);
    font-size: 0.9rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: t5-announce-ring 2s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar .announce-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.topbar .announce-btn:hover i {
    animation: t5-announce-shake 0.6s ease;
}

.topbar .announce-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 9px;
    height: 9px;
    border: 2px solid var(--t5-navy);
    border-radius: 50%;
    background: #ef4444;
}

@keyframes t5-announce-ring {
    0% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0.55); }
    70% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes t5-announce-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-14deg); }
    75% { transform: rotate(14deg); }
}

.t5-announce-modal .modal-content {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.t5-announce-modal .modal-header {
    background: var(--t5-navy);
    color: #fff;
    border-bottom: 0;
    padding: 1rem 1.25rem;
}

.t5-announce-modal .modal-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.t5-announce-modal .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: 0.85;
}

.t5-announce-modal .modal-body {
    padding: 1.35rem 1.25rem;
    border-top: 4px solid var(--t5-gold);
}

.t5-announce-text {
    margin: 0;
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.65;
}

.t5-announce-modal .modal-footer {
    border-top: 1px solid #eef2f7;
    background: #f8fafc;
    padding: 0.85rem 1.25rem;
}

/* Branding bar — fixed logo height, width auto / full page */
.brand-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1;
    padding: 0.5rem 0;
    overflow: hidden;
}

.brand-bar > .container {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    min-height: auto;
}

.brand-bar .adminedit[data-id="logo"] {
    position: absolute;
    left: 12px;
    top: -10px;
    z-index: 3;
}

.brand-logo {
    margin-right: 0;
    margin-left: 0 !important;
    margin-inline-start: 0 !important;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0.1rem 0;
    order: 0;
    flex: 1 1 auto;
}

.navbar-brand.brand-logo {
    margin-right: 0;
    margin-left: 0 !important;
    width: 100%;
    max-width: 100%;
}

.brand-bar .navbar-toggler,
.brand-bar .navbar-collapse {
    margin-left: auto;
    flex: 0 0 auto;
}

.brand-logo .logo,
.logo {
    width: auto;
    max-width: 100%;
    height: 88px;
    max-height: 88px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* Full-width banner logo only */
.brand-bar.brand-bar-banner {
    padding: 0;
    border-bottom: 0;
}

.brand-bar.brand-bar-banner > .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.brand-bar.brand-bar-banner .brand-logo {
    padding: 0;
    line-height: 0;
}

.brand-bar.brand-bar-banner .logo {
    width: 100%;
    height: auto;
    max-height: none;
}

.login-hero-text .brand-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 0.35rem;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.01em;
}

.login-hero-text .brand-subtitle {
    font-size: 0.98rem;
    color: #6b7280;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.login-hero-text .brand-accent {
    display: block;
    width: 50px;
    height: 3px;
    background: #e67e22;
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.brand-bar .nav-link {
    color: var(--t5-navy) !important;
    font-weight: 500;
}

.brand-bar .btn-primary,
.btn-primary {
    background-color: var(--t5-navy);
    border-color: var(--t5-navy);
}

.brand-bar .btn-primary:hover,
.btn-primary:hover {
    background-color: var(--t5-navy-dark);
    border-color: var(--t5-navy-dark);
}

.navbar {
    z-index: 1;
}

/* Footer */
.t5-footer,
footer.t5-footer {
    background: var(--t5-navy);
    margin-top: auto;
}

.t5-footer a {
    color: #fff;
    padding: 0 4px;
    text-decoration: none;
}

.t5-footer a:hover {
    color: #dcd6d6;
    text-decoration: underline;
}

.t5-footer .footer-copy {
    font-size: 0.88rem;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.t5-footer .footer-links {
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.t5-footer .footer-sep {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 4px;
}

.t5-contact-page {
    background: linear-gradient(180deg, #f4f6fb 0%, #ffffff 100%);
    padding: 2.75rem 0 3.25rem;
    min-height: 42vh;
}

.t5-contact-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.t5-contact-nav {
    margin-bottom: 0.85rem;
}

.t5-contact-home {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--t5-navy);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none !important;
    padding: 0.25rem 0;
}

.t5-contact-home:hover {
    color: #0a2348;
    text-decoration: underline !important;
}

.t5-contact-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.t5-contact-head h1 {
    color: var(--t5-navy);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.t5-contact-head p {
    color: #6b7280;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    padding: 0 0.25rem;
}

.t5-contact-tile {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none !important;
    background: #fafbff;
    height: 100%;
    min-height: 76px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.t5-contact-tile:hover,
.t5-contact-tile:focus {
    border-color: var(--t5-navy);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    outline: none;
}

.t5-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--t5-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}

.t5-contact-meta {
    flex: 1;
    min-width: 0;
}

.t5-contact-label {
    display: block;
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
}

.t5-contact-value {
    display: block;
    color: #111827;
    font-weight: 600;
    font-size: 1rem;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.t5-contact-action {
    color: #9ca3af;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.t5-contact-admin {
    text-align: center;
}

.footer-logo-placeholder {
    min-width: 120px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    border: 1px dashed rgba(255,255,255,0.45);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.t5-footer .footer-brand-logo {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.t5-footer .footer-brand-logo img {
    width: auto;
    max-width: 160px;
    max-height: 48px;
    height: auto;
    object-fit: contain;
    background: transparent;
}

/* Features strip above footer */
.t5-features {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 1.25rem 0 1.35rem;
}

.t5-features-row {
    align-items: stretch;
    flex-wrap: nowrap;
}

.t5-feature-col {
    border-right: 1px solid #e5e7eb;
}

.t5-feature-col:last-child {
    border-right: none;
}

.t5-feature-item {
    padding: 0.85rem 1.25rem;
}

.t5-feature-icon {
    color: var(--t5-navy);
    font-size: 1.65rem;
    margin-bottom: 0.45rem;
    min-height: 34px;
    line-height: 1;
}

.t5-feature-icon img {
    max-height: 36px;
    width: auto;
}

.t5-feature-title {
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.t5-feature-subtitle {
    color: #1a1a2e;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.t5-feature-desc {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

footer a {
    color: white;
    padding: 8px;
    text-decoration: none;
}

footer a:hover {
    color: #dcd6d6;
}

/* Tablet / mobile — keep same composition as reference image */
@media (max-width: 991.98px) {
    .brand-bar {
        padding: 0.5rem 0;
    }

    .brand-bar > .container {
        min-height: auto;
        justify-content: flex-start !important;
        align-items: center;
        max-width: 100%;
    }

    .brand-logo {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        margin-left: 0 !important;
    }

    .brand-logo .logo,
    .logo {
        width: auto;
        max-width: 100%;
        height: 76px;
        max-height: 76px;
        margin: 0;
    }

    /* Keep features in one row like desktop */
    .t5-feature-col {
        border-right: 1px solid #e5e7eb;
        border-bottom: none;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .t5-feature-col:nth-child(2n) {
        border-right: 1px solid #e5e7eb;
    }

    .t5-feature-col:last-child,
    .t5-feature-col:nth-child(4n) {
        border-right: none;
    }

    .t5-feature-col:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .login-page-main {
        padding-top: 1.25rem;
    }

    /* Topbar: one line, no scroll — smaller fonts on mobile */
    .topbar {
        text-align: left;
        font-size: 0.68rem;
        padding-top: 0.35rem !important;
        padding-bottom: 0.35rem !important;
    }

    .topbar .container {
        flex-wrap: nowrap !important;
        gap: 4px 6px;
        justify-content: space-between !important;
        align-items: center !important;
        overflow: hidden;
        max-width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }

    .topbar-left,
    .topbar-right {
        width: auto;
        max-width: none;
        flex-wrap: nowrap !important;
        flex: 0 1 auto;
        min-width: 0;
        justify-content: flex-start;
        margin-top: 0;
        gap: 2px 5px;
    }

    .topbar-right {
        justify-content: flex-end;
        margin-left: 4px;
        flex: 0 0 auto;
    }

    .topbar-left a,
    .topbar-right a {
        white-space: nowrap;
        word-break: normal;
        font-size: inherit;
        line-height: 1.2;
    }

    .topbar-left a.pe-3 {
        padding-right: 0.35rem !important;
    }

    .topbar .follow-label {
        font-size: inherit;
        white-space: nowrap;
        margin-right: 0.25rem !important;
    }

    .topbar .social-circle {
        width: 22px;
        height: 22px;
        margin-left: 2px;
        font-size: 0.65rem;
        flex-shrink: 0;
    }

    .topbar .adminedit {
        margin-left: 2px !important;
        padding: 0.08rem 0.25rem;
        font-size: 0.58rem;
        line-height: 1;
    }

    /* Brand bar: logo left like reference */
    .brand-bar {
        padding: 0.45rem 0;
        background: #fff;
    }

    .brand-bar > .container {
        min-height: auto;
        justify-content: flex-start !important;
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
    }

    .brand-logo {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        margin-left: 0 !important;
        display: block;
    }

    .brand-logo .logo,
    .logo {
        width: auto;
        max-width: 100%;
        height: 68px;
        max-height: 68px;
        margin: 0;
        object-fit: contain;
        object-position: left center;
    }

    .brand-bar .navbar-toggler {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        padding: 0.25rem 0.45rem;
        border-color: rgba(0, 45, 98, 0.25);
    }

    /* Hero above login — same as image */
    .login-hero-text {
        padding: 0 0.75rem;
        margin-bottom: 1.15rem !important;
    }

    .login-hero-text .brand-title {
        font-size: 1.3rem;
        color: #1a1a2e;
        font-weight: 700;
        font-family: Georgia, 'Times New Roman', serif;
    }

    .login-hero-text .brand-subtitle {
        font-size: 0.88rem;
        color: #6b7280;
    }

    .login-hero-text .brand-accent {
        width: 48px;
        margin-top: 0.7rem;
    }

    .login-page-main .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .t5-features {
        padding: 0.9rem 0 1rem;
        background: #fff;
    }

    .t5-feature-item {
        padding: 0.7rem 0.75rem;
    }

    .t5-feature-icon {
        font-size: 1.4rem;
        min-height: 30px;
        margin-bottom: 0.35rem;
        color: var(--t5-navy);
    }

    .t5-feature-icon img {
        max-height: 32px;
    }

    .t5-feature-title {
        font-size: 0.92rem;
    }

    .t5-feature-subtitle {
        font-size: 0.85rem;
    }

    .t5-feature-desc {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .t5-footer {
        padding-top: 1.35rem !important;
        padding-bottom: 1.35rem !important;
        text-align: center;
    }

    .t5-footer .footer-copy {
        font-size: 0.8rem;
        padding: 0 0.75rem;
        line-height: 1.45;
    }

    .t5-footer .footer-links {
        font-size: 0.78rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }

    .t5-footer .footer-sep {
        margin: 0 2px;
    }

    .t5-footer .footer-brand-logo img {
        max-width: 140px;
        max-height: 42px;
    }

    .t5-contact-page {
        padding: 1.5rem 0 2rem;
        min-height: auto;
    }

    .t5-contact-card {
        border-radius: 14px;
        padding: 1.35rem 1rem;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }

    .t5-contact-head {
        margin-bottom: 1.1rem;
    }

    .t5-contact-head h1 {
        font-size: 1.4rem;
    }

    .t5-contact-head p {
        font-size: 0.88rem;
    }

    .t5-contact-tile {
        min-height: 72px;
        padding: 0.95rem 0.95rem;
        gap: 0.75rem;
        border-radius: 12px;
    }

    .t5-contact-icon {
        width: 42px;
        height: 42px;
        font-size: 0.98rem;
    }

    .t5-contact-label {
        font-size: 0.75rem;
    }

    .t5-contact-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .topbar {
        font-size: 0.58rem;
        padding-top: 0.3rem !important;
        padding-bottom: 0.3rem !important;
    }

    .topbar .container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 2px 4px;
        overflow: hidden;
        padding-left: 6px;
        padding-right: 6px;
    }

    .topbar-left,
    .topbar-right {
        width: auto !important;
        flex-wrap: nowrap !important;
        gap: 1px 4px;
    }

    .topbar-right {
        margin-left: 2px;
    }

    .topbar-left a.pe-3 {
        padding-right: 0.25rem !important;
        display: inline-flex;
        align-items: center;
        gap: 0.15rem;
        white-space: nowrap;
    }

    .topbar .follow-label {
        font-size: inherit;
        margin-right: 0.15rem !important;
    }

    .topbar .social-circle {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
        margin-left: 2px;
    }

    .topbar .adminedit {
        padding: 0.05rem 0.2rem;
        font-size: 0.5rem;
    }

    .brand-bar > .container {
        min-height: auto;
    }

    .brand-logo {
        width: 100%;
        max-width: 100%;
    }

    .brand-logo .logo,
    .logo {
        width: auto;
        max-width: 100%;
        height: 58px;
        max-height: 58px;
    }

    .t5-footer .footer-brand-logo img {
        max-width: 120px;
        max-height: 40px;
    }

    .login-hero-text .brand-title {
        font-size: 1.12rem;
        font-family: Georgia, 'Times New Roman', serif;
    }

    .login-hero-text .brand-subtitle {
        font-size: 0.82rem;
    }

    .t5-features {
        padding: 0.7rem 0 0.8rem;
    }

    .t5-feature-item {
        padding: 0.45rem 0.3rem;
    }

    .t5-feature-icon {
        font-size: 1.15rem;
        min-height: 24px;
        margin-bottom: 0.25rem;
    }

    .t5-feature-icon img {
        max-height: 26px;
    }

    .t5-feature-title {
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .t5-feature-subtitle {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .t5-feature-desc {
        font-size: 0.62rem;
        line-height: 1.3;
    }

    .t5-contact-page {
        padding: 1.15rem 0 1.6rem;
    }

    .t5-contact-card {
        padding: 1.15rem 0.85rem;
        border-radius: 12px;
    }

    .t5-contact-head h1 {
        font-size: 1.25rem;
    }

    .t5-contact-head p {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .t5-contact-tile {
        min-height: 68px;
        padding: 0.85rem 0.8rem;
        gap: 0.7rem;
    }

    .t5-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 0.92rem;
    }

    .t5-contact-value {
        font-size: 0.9rem;
    }

    .t5-contact-admin .btn {
        width: 100%;
        max-width: 260px;
    }

    .footer-logo-placeholder {
        min-width: 100px;
        font-size: 0.72rem;
        padding: 0.35rem 0.65rem;
    }

    .t5-footer .footer-links a {
        display: inline-block;
        padding: 0.15rem 2px;
    }
}

/* Helpdesk phone icon — FA handset is mirrored; flip to upright look */
.topbar .fa-phone,
.t5-contact-icon .fa-phone {
    display: inline-block;
    transform: scaleX(-1);
}

/* Admin / theme edit modals — visual polish only */
.modal .modal-dialog {
    margin-top: 1.75rem;
}

.modal .modal-content {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.2);
    overflow: hidden;
}

.modal .modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--t5-navy);
    color: #fff;
    border-bottom: 0;
    padding: 1rem 1.25rem;
}

.modal .modal-header .modal-title {
    order: 1;
    margin: 0 auto 0 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.modal .modal-header .btn-close {
    order: 2;
    margin: 0;
    padding: 0.5rem;
    filter: invert(1) grayscale(100%);
    opacity: 0.85;
}

.modal .modal-header .btn-close:hover {
    opacity: 1;
}

.modal .modal-body {
    padding: 1.25rem;
    background: #fff;
}

.modal .modal-body .form-group {
    margin-bottom: 1rem;
}

.modal .modal-body label,
.modal .modal-body .form-check-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.modal .modal-body .form-control {
    border-radius: 8px;
    border-color: #e2e8f0;
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
}

.modal .modal-body .form-control:focus {
    border-color: var(--t5-navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 45, 98, 0.12);
}

.modal .modal-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    border-top: 1px solid #eef2f7;
    background: #f8fafc;
    padding: 0.9rem 1.25rem;
}

.modal .modal-footer .btn {
    border-radius: 8px;
    font-weight: 500;
    min-width: 88px;
    padding: 0.45rem 1rem;
}

.modal .modal-footer .btn-primary {
    background: var(--t5-navy);
    border-color: var(--t5-navy);
}

.modal .modal-footer .btn-primary:hover {
    background: var(--t5-navy-dark);
    border-color: var(--t5-navy-dark);
}

.modal .modal-footer .btn-danger {
    background: #fff;
    color: #64748b;
    border: 1px solid #cbd5e1;
}

.modal .modal-footer .btn-danger:hover {
    background: #f1f5f9;
    color: #334155;
    border-color: #94a3b8;
}

.modal-backdrop.show {
    opacity: 0.5;
}
