﻿html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.card h5 {
    border-bottom: 1px solid #d0d7e2;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

#submitLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.85);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

/* ──────────── Rate Options Layout ──────────── */
.rate-columns {
    column-count: 1;
    column-gap: 2rem;
    padding-top: 1rem;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #d0d7e2; /* 👈 more visible */
    background-color: #f9fbff; /* optional subtle background */
    overflow: visible;
}

@media (min-width: 768px) {
    .rate-columns {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .rate-columns {
        column-count: 3;
    }
}

.rate-column {
    break-inside: avoid;
    margin-bottom: 2rem;
    background-color: #f8f9fc; /* light subtle blue */
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
}

.fake-table-header {
    font-weight: bold;
    background: #e3f2fd;
    padding: 0.5rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #dee2e6;
    margin-bottom: 0.5rem;
}

.fake-table-row {
    display: flex;
    justify-content: space-between;
    border: 1px solid #c6d3e3; /* ✅ Slightly darker than before */
    padding: 0.5rem;
    background: #fff;
    border-radius: 6px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
    .fake-table-row + .fake-table-row {
        margin-top: 0.5rem;
    }

    .fake-table-row:hover {
        background-color: #f1f4f9;
        border-color: #9bb0c9; /* ✅ a little stronger on hover */
    }

.fake-col {
    width: 33%;
    text-align: center;
}

