/* ============================================================
   Customer reviews - shared styles
   Styled to match the landing-page / testimonials aesthetic:
   navy #003366 sections, white cards (radius 16px,
   shadow 0 10px 40px rgba(0,0,0,.15)), Poppins typography.
   No JS required (CSP-safe). Star input is pure CSS.
   ============================================================ */

:root {
    --review-star: #003366;        /* dark-blue (brand navy) filled stars */
    --review-star-empty: #cdd6e0;
    --review-navy: #003366;
    --review-blue: #4fc3f7;
}

/* ---------- Read-only star display (overlay technique) ---------- */
.stars-display {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
    font-size: 1.25rem;
    letter-spacing: 2px;
}
.stars-display .stars-bg { color: var(--review-star-empty); }
.stars-display .stars-fg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: var(--review-star);
}

/* ---------- Star rating (plain navy stars, single-string overlay — can't misalign) ---------- */
.tp-stars {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
    font-size: 25px;
    letter-spacing: 3px;
}
.tp-stars-bg { color: var(--review-star-empty); }
.tp-stars-fg {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--review-star);
}
/* Large variant for the summary block */
.tp-stars--lg { font-size: 42px; letter-spacing: 5px; }

/* ---------- Rating widget (self-contained white pill: shows on any background) ---------- */
.own-rating-widget {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: #ffffff;
    padding: 9px 18px;
    border-radius: 50px;
    box-shadow: 0 6px 22px rgba(0, 51, 102, 0.13);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.own-rating-widget:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 51, 102, 0.2);
}
.own-rating-widget .stars-display { font-size: 1.2rem; letter-spacing: 3px; }
.own-rating-divider { width: 1px; height: 22px; background: #e3e9f0; flex: 0 0 1px; }
.own-rating-score {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    color: var(--review-navy);
}
.own-rating-score strong { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.own-rating-outof { color: #5a6677; font-size: 0.78rem; font-weight: 500; }
.own-rating-widget .rating-count { color: #5a6677; font-size: 0.85rem; font-weight: 500; }

/* Neutralise legacy chip wrappers so the self-contained pill renders cleanly inside them */
.ab-mission-trustpilot,
.contact-hero-trustpilot,
.blog-hero-trustpilot,
.blog-end-cta-trust {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* ============================================================
   Public reviews page
   ============================================================ */
.reviews-page { font-family: 'Poppins', sans-serif; }

/* Reviews page only: navbar sits flush on the navy hero at the very top
   (no divider/shadow). The line + shadow fade back in once scrolled — base.js
   toggles .navbar-scrolled. Every other page keeps the navbar line as normal. */
body.reviews-page .navbar:not(.navbar-scrolled) {
    border-bottom-color: transparent;
    box-shadow: none;
}
/* When scrolled, the bar sits over the light review band — the white border is
   invisible there, so use a crisp navy hairline + soft shadow that shows on light. */
body.reviews-page .navbar.navbar-scrolled {
    box-shadow: 0 1px 0 rgba(15, 35, 65, 0.12), 0 5px 16px rgba(0, 0, 0, 0.13);
}

/* ---- Hero (navy, matches testimonials section) ---- */
.reviews-hero {
    background: #003366;
    padding: 0 0 3.5rem;
    text-align: center;
}
/* Sit flush directly under the sticky navbar, with a clean internal top space.
   (.full-bleed forces padding-top:0 !important, so override it scoped + !important.) */
.reviews-page .reviews-hero {
    margin-top: 0 !important;
    padding-top: 2.5rem !important;
}
.reviews-hero h1 {
    color: #ffffff;
    font-weight: 800;
    margin: 0 0 0.5rem;
    font-size: 2.6rem;
    font-family: 'Poppins', sans-serif;
}
.reviews-hero-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    margin-bottom: 0;
}
.reviews-hero-blurb {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0.4rem auto 0;
    max-width: 440px;
}

/* Two-column hero: heading block + rating card. Stacked (centered) on mobile,
   side-by-side on desktop with the rating card pulled to the LEFT. */
.reviews-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.reviews-hero-text { text-align: center; }
@media (min-width: 992px) {
    .reviews-hero-inner { flex-direction: row; align-items: center; gap: 3.25rem; }
    .reviews-hero-text { text-align: center; flex: 0 1 440px; }
    .reviews-summary-card { flex: 0 0 auto; }
}

/* Prominent Trustpilot link (compliant: plain-text link to our profile, no logo or score) */
.reviews-tp-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 11px 22px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
    text-decoration: none;
    margin-top: 1rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.reviews-tp-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3); }
.reviews-tp-link {
    color: var(--review-navy);
    font-weight: 700;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.reviews-tp-link i { font-size: 0.78rem; }

/* Hero "Leave a review" button (accent fill, sits below the Trustpilot link) */
.reviews-hero-cta { margin-top: 1.75rem; }
.reviews-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--review-blue);
    color: #003366;
    font-weight: 700;
    padding: 0.7rem 1.7rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}
.reviews-hero-btn:hover { background: #38b6ee; color: #003366; transform: translateY(-1px); }
.reviews-hero-btn i { font-size: 0.82rem; }

/* ---- Floating summary card (centered: descriptor, big stars, score line, bars) ---- */
.reviews-summary-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.9rem 2.5rem 2rem;
    display: block;
    text-align: center;
    min-width: 300px;
    max-width: 460px;
    margin: 0;
}
.reviews-summary-word {
    color: var(--review-navy);
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.95rem;
    font-family: 'Poppins', sans-serif;
}
.reviews-summary-card .tp-stars { margin: 0 auto; }
.reviews-summary-line {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
}
.reviews-summary-score { font-weight: 800; font-size: 1.15rem; color: var(--review-navy); }
.reviews-summary-outof { color: #5a6677; font-weight: 500; font-size: 0.9rem; }
.reviews-summary-sep { color: #c3ccd6; }
.reviews-summary-count { color: #5a6677; font-weight: 500; font-size: 0.92rem; }

.review-distribution {
    margin: 1.4rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid #eef2f7;
    max-width: 320px;
    text-align: left;
}
.review-dist-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
    font-size: 0.85rem;
    color: #5a6677;
}
.review-dist-row:last-child { margin-bottom: 0; }
.review-dist-row .dist-label {
    width: 52px;
    white-space: nowrap;
    text-align: left;
    color: #5a6677;
}
.review-dist-bar { flex: 1; height: 8px; background: #edf1f6; border-radius: 6px; overflow: hidden; }
.review-dist-bar span { display: block; height: 100%; background: var(--review-star); border-radius: 6px; }
.review-dist-row .dist-count { width: 36px; text-align: right; }

/* ---- Review list (elevated cards on a soft tinted band) ---- */
.reviews-body-band { background: #f6f9fc; }
.reviews-page .reviews-body-band { padding-top: 0 !important; }
.reviews-body { padding: 3rem 15px 3rem; }

/* ---- Filter / sort toolbar ---- */
.reviews-toolbar {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}
.rf-search { position: relative; flex: 1 1 220px; min-width: 180px; }
.rf-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #5a6677;
    font-size: 0.85rem;
    pointer-events: none;
}
.rf-search input {
    width: 100%;
    border: 1px solid #dbe3ec;
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem 0.9rem 0.6rem 2.3rem;
    font-size: 0.92rem;
    color: var(--review-navy);
    font-family: 'Poppins', sans-serif;
}
.rf-search input:focus { outline: 2px solid var(--review-blue); outline-offset: 1px; border-color: var(--review-blue); }
.rf-search input::placeholder { color: #6b7785; opacity: 1; }
.rf-chips { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.rf-radio { position: absolute; opacity: 0; width: 0; height: 0; }
.rf-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid #dbe3ec;
    color: #5a6677;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.42rem 0.72rem;
    border-radius: 50px;
    cursor: pointer;
    margin: 0;
    transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.rf-chip-stars { color: var(--review-star); font-size: 0.82rem; letter-spacing: 1px; line-height: 1; }
.rf-chip-n { color: #5a6677; font-weight: 500; font-size: 0.78rem; }
.rf-chip:hover { border-color: var(--review-navy); }
.rf-radio:checked + .rf-chip { background: var(--review-navy); border-color: var(--review-navy); color: #fff; }
.rf-radio:checked + .rf-chip .rf-chip-stars,
.rf-radio:checked + .rf-chip .rf-chip-n { color: #fff; }
.rf-radio:focus-visible + .rf-chip { outline: 2px solid var(--review-blue); outline-offset: 2px; }
.rf-sort { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; }
.rf-sort-label { color: #5a6677; font-size: 0.85rem; font-weight: 500; margin: 0; white-space: nowrap; }
.rf-select {
    border: 1px solid #dbe3ec;
    background: #fff;
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
    font-size: 0.88rem;
    color: var(--review-navy);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}
.rf-select:focus { outline: 2px solid var(--review-blue); outline-offset: 1px; border-color: var(--review-blue); }
.rf-apply { border: none; background: var(--review-blue); color: #003366; font-weight: 700; border-radius: 10px; padding: 0.5rem 1rem; cursor: pointer; }
.rf-clear { display: inline-block; margin-top: 0.5rem; color: var(--review-navy); font-weight: 600; text-decoration: underline; }

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 760px;
    margin: 0 auto;
}
.review-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9eef4;
    border-radius: 14px;
    padding: 1.5rem 1.65rem 1.4rem;
    box-shadow: 0 4px 18px rgba(0, 51, 102, 0.06);
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: left;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 51, 102, 0.13);
}
.review-quote {
    position: absolute;
    top: 0.6rem;
    right: 1.4rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    line-height: 1;
    color: #e6eef8;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}
/* Head: avatar + name/verified + date (pushed right) */
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 0.85rem; position: relative; z-index: 1; }
.review-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--review-navy), #0a4d8c);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}
.review-card-head-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review-author { font-weight: 700; color: var(--review-navy); font-size: 1.02rem; }
.review-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e6f7ed;
    color: #18713d;
    font-size: 0.66rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.review-verified-badge i { font-size: 0.72rem; }
.review-date { margin-left: auto; color: #5a6677; font-size: 0.85rem; white-space: nowrap; }
/* Stars row */
.review-card-rating { display: flex; align-items: center; margin-bottom: 0.7rem; }
.review-card-title {
    font-weight: 700;
    color: var(--review-navy);
    font-size: 1.12rem;
    margin-bottom: 0.4rem;
    font-family: 'Poppins', sans-serif;
}
.review-card-body { color: #4a5568; line-height: 1.7; margin-bottom: 0; font-size: 0.97rem; }

/* ---- Reviews pagination ---- */
.reviews-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: 760px;
    margin: 1.9rem auto 0;
}
.rp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #dbe3ec;
    color: var(--review-navy);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.15s ease;
}
.rp-link:hover { border-color: var(--review-navy); }
.rp-link.rp-disabled { color: #aab4c0; border-color: #eef2f7; cursor: default; pointer-events: none; }
.rp-link i { font-size: 0.75rem; }
.rp-status { color: #5a6677; font-size: 0.88rem; font-weight: 500; }

/* ---- Leave a review CTA (gated) ---- */
.reviews-leave {
    text-align: center;
    background: #f4f8fc;
    border: 1px solid #e3ecf5;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    max-width: 640px;
    margin: 1rem auto 0;
}
.reviews-leave-text {
    color: var(--review-navy);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}
.reviews-leave-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--review-blue);
    color: #003366;
    font-weight: 700;
    padding: 0.7rem 1.7rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}
.reviews-leave-btn:hover { background: #38b6ee; color: #003366; transform: translateY(-1px); }
.reviews-leave-btn i { font-size: 0.8rem; }

.reviews-empty { text-align: center; color: #5a6677; padding: 3.5rem 1rem; }
.reviews-empty i { font-size: 2.5rem; color: #cdd8e3; margin-bottom: 1rem; display: block; }

/* ---- Merged trust + CTA closing section (navy) ---- */
.reviews-closing { background: #003366; padding: 6rem 0 4.5rem; }
/* .full-bleed forces padding-top:0 !important, so override it scoped + !important */
.reviews-page .reviews-closing { padding-top: 6rem !important; }
.reviews-closing-title {
    text-align: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}
.reviews-closing-sub {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 2.75rem;
}
.reviews-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1040px;
    margin: 0 auto;
}
.reviews-why-item {
    background: #ffffff;
    border: 1px solid #e8eef5;
    border-radius: 14px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 51, 102, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.reviews-why-item:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0, 51, 102, 0.1); }
.reviews-why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--review-navy);
    margin-bottom: 0.6rem;
    font-family: 'Poppins', sans-serif;
}
.reviews-why-item p { color: #5a6677; font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* ---- CTA part inside the merged closing section ---- */
/* CTA: navy rounded "blue box" centred on white (matches homepage .home-final-cta) */
.reviews-cta-wrap { padding: 4rem 15px; }
.reviews-final-cta {
    background-color: #003366;
    padding: 56px 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.reviews-cta-title { color: #ffffff; font-weight: 700; margin-bottom: 0.75rem; font-size: 2rem; font-family: 'Poppins', sans-serif; }
.reviews-cta-sub {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 1.75rem;
    max-width: 660px;
    font-size: 1.02rem;
    line-height: 1.6;
}
.reviews-cta-sub a { color: #4fc3f7; text-decoration: underline; }
.reviews-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #003366;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.85rem 2.1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}
.reviews-cta-btn:hover { background: #f0f0f0; color: #003366; transform: translateY(-2px); }

@media (max-width: 575px) {
    .reviews-hero { padding-bottom: 2.75rem; }
    .reviews-hero h1 { font-size: 2rem; }
    .reviews-summary-card { padding: 1.4rem 1.5rem 1.6rem; min-width: 0; }
    .reviews-body { padding-top: 2.5rem; }
    .review-card-head { flex-wrap: wrap; }
    .review-date { flex-basis: 100%; margin-left: 58px; }
    .reviews-cta-title { font-size: 1.6rem; }
}

/* ============================================================
   Dashboard "leave a review" CTA card → opens the review page
   ============================================================ */
.review-cta-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-top: 2.5rem;
    box-shadow: 0 4px 18px rgba(0, 51, 102, 0.05);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.review-cta-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 51, 102, 0.12); border-color: #cfe0f0; }
.review-cta-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--review-navy), #0a4d8c);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.review-cta-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.review-cta-title { font-weight: 700; color: var(--review-navy); font-size: 1.05rem; font-family: 'Poppins', sans-serif; }
.review-cta-text { color: #5a6677; font-size: 0.9rem; line-height: 1.5; }
.review-cta-arrow { color: var(--review-blue); font-size: 1rem; flex: 0 0 auto; }

/* Review page (its own dashboard page) */
.review-page-container { max-width: 760px; }
.review-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--review-navy);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    margin-bottom: 1.25rem;
}
.review-back-link:hover { text-decoration: underline; }
.review-back-link i { font-size: 0.8rem; }

/* ============================================================
   Dashboard "leave a review" card
   ============================================================ */
.review-form-card {
    background: #fff;
    border: 1px solid #e7edf4;
    border-radius: 14px;
    padding: 1.75rem;
    margin-top: 2.5rem;
    box-shadow: 0 4px 18px rgba(0, 51, 102, 0.05);
}
.review-form-card h3 { color: var(--review-navy); font-weight: 700; margin-bottom: 0.25rem; }
.review-form-card .review-form-sub { color: #5a6677; font-size: 0.95rem; margin-bottom: 1.25rem; }
.review-form-card label.field-label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}
.review-form-card input[type="text"],
.review-form-card textarea {
    width: 100%;
    border: 1px solid #d9dee5;
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.review-form-card textarea { min-height: 110px; resize: vertical; }

/* Pure-CSS star INPUT (radio buttons, reversed row) */
.star-input {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.star-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-input label {
    font-size: 2.1rem;
    color: var(--review-star-empty);
    cursor: pointer;
    padding: 0 2px;
    transition: color 0.15s ease;
    margin: 0;
    line-height: 1;
}
.star-input label::before { content: "\2605"; }
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label { color: var(--review-star); }
.star-input input:focus-visible + label { outline: 2px solid var(--review-blue); }

.review-submit-btn {
    background: var(--review-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1.6rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
}
.review-submit-btn:hover { background: #38b6ee; }

.review-flash { border-radius: 8px; padding: 0.75rem 1rem; margin-bottom: 1rem; font-size: 0.95rem; }
.review-flash.success { background: #e6f7ed; color: #1e8449; border: 1px solid #b7e4c7; }
.review-flash.error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; }

.review-existing-note {
    background: #f4f9ff;
    border: 1px solid #d6e6f7;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-size: 0.92rem;
}
