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;
}