html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@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;
}

.info-page h2 {
    font-size: 1.1rem; /* Smaller, readable */
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
}

.site-logo {
    display: flex;
    align-items: center;
    max-width: 220px; /* desktop default */
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 260px; /* mobile cap */
        flex-shrink: 1;
    }

    .site-logo img {
        max-width: 100%;
        height: auto;
    }
}


.site-logo img {
    height: 52px;
    width: auto;
}

.header-search-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.header-search-link:hover {
    text-decoration: underline;
}

/* Mobile: icon only */
@media (max-width: 768px) {
.header-search-link .search-text {
        display: none;
    }

    .search-icon {
        font-size: 20px;
    }
}

.wrap-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    background-color: #000;
    z-index: 1030;
}

/* Nav links */
.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.header-nav a:hover {
    text-decoration: underline;
}

/* Mobile button */
.site-header-black .btn {
    border-color: #555;
}

/* County intro / description text */
.county-intro {
    margin-bottom: 20px;
}

.county-intro p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.padding-2020 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-disclaimer {
    font-size: 12px;
    color: #aaa;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.county-list {
    list-style-type: none;
    padding: 10px 5px;
}

.breadcrumb-wrapper {
    margin: 0.75rem 0 1rem;
    font-size: 0.9rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb a {
    text-decoration: none;
    opacity: 0.85;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.recent-county-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-county-item {
    padding: 14px 16px;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Alternating row background */
.recent-county-item:nth-child(even) {
    background-color: #f3f3f3;
}

/* County link styling */
.recent-county-item .county-link {
    color: #2aa7a3; /* teal accent like screenshot */
    font-weight: 600;
    text-decoration: none;
}

    .recent-county-item .county-link:hover {
        text-decoration: underline;
    }

/* Muted date text */
.recent-county-item .county-date {
    color: #6f6f6f;
    font-weight: 400;
    white-space: nowrap;
}

.recent-county-item:hover {
    background-color: #eaeaea;
}

/* Footer centering fix */
.site-footer {
    width: 100%;
    text-align: center;
}

.site-footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    font-weight: 600;
}

    .site-footer .footer-links a,
    .site-footer .footer-links span {
        color: #ffffff;
        font-size: 0.85rem;
        white-space: nowrap;
        -webkit-text-decoration: inherit;
        text-decoration: none;
    }

.site-footer p {
    margin: 6px auto;
    max-width: 1000px;
    line-height: 1.4;
    color: #cccccc;
}

.site-footer .footer-copy {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #ffffff;
}







