html {
  font-size: 14px;
  font-family: Georgia
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}
header img {
    display: block;
}
body {
  margin-bottom: 60px;
}

.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;
}
.ql-editor {
    min-height: 20rem; /* ~10 lines depending on font-size */
}
h3 {
    font-weight: 700;
}
:root {
    --bs-font-sans-serif: "ff-meta-web-pro", sans-serif;
    --bs-heading-color: #455560;
}
.validation-summary-errors {
    background-color: #f2dede; /* Example background */
    border: 1px solid #eed3d7; /* Example border */
    padding: 10px;
    border-radius: 4px;
}

    .validation-summary-errors ul {
        list-style-type: square; /* or none to remove bullet points */
        padding-left: 20px; /* Adjust padding as needed */
    }

.validation-summary-valid {
    display: none; /* Hides the summary when there are no errors (default behavior) */
}

/* Health Enrollment Styles */
.insurance-plan-card {
    transition: all 0.2s ease-in-out;
    border: 2px solid #dee2e6;
}

.insurance-plan-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.insurance-plan-card.border-primary {
    border-color: #0d6efd !important;
    border-width: 2px;
}

.insurance-plan-card.bg-light {
    background-color: #e7f3ff !important;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.highlight-card .card-body {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.plan-column {
    display: flex;
    flex-direction: column;
}

.highlight-wrapper {
    flex: 0 0 auto;
}

/* Shared CSP-safe utility classes */
.loading-spinner {
    display: none;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.table-loading {
    opacity: 0.6;
    pointer-events: none;
}

.csp-hidden {
    display: none;
}

.csp-inline-block {
    display: inline-block;
}

.csp-max-width-700 {
    max-width: 700px;
}

.csp-scroll-300 {
    min-height: 300px;
    max-height: 300px;
    overflow-y: auto;
}

.csp-scroll-200-300 {
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

.csp-icon-4rem {
    font-size: 4rem;
}

.csp-modal-80vw {
    width: 80vw;
    max-width: 80vw;
}

.csp-modal-body-60vh-scroll {
    height: 60vh;
    overflow-y: auto;
}

.health-highlight-card-theme {
    background-color: #214e9f;
    color: white;
}

.csp-preline-sm {
    white-space: pre-line;
    font-size: 0.9rem;
}

.csp-cursor-pointer {
    cursor: pointer;
}

.csp-uppercase {
    text-transform: uppercase;
}

.csp-qr-code {
    width: 250px;
    height: 250px;
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.csp-placeholder-content-box {
    min-height: 100px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 20px;
    background-color: #f8f9fa;
    transition: all 0.3s ease-in-out;
}

.csp-placeholder-content-box:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.w2-consent-modal-content {
    animation: w2ModalFadeIn 0.3s ease-in-out;
}

@keyframes w2ModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-check-input:checked {
    background-color: #198754;
    border-color: #198754;
}


@@media print {
    .card {
        border: none;
        box-shadow: none;
    }

    .card-header {
        background-color: #0d6efd !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .badge {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}