@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --text: #0f172a;
    --text-secondary: #64748b;
    --border: #e2e8f0;
    --blue: #2563eb;
    --blue-light: #eff6ff;
    --green: #16a34a;
    --green-light: #f0fdf4;
    --red: #dc2626;
    --red-light: #fef2f2;
    --orange: #ea580c;
    --orange-light: #fff7ed;
    /* Agency branding colors (set via JS) */
    --agency-primary: #D4A84B;
    --agency-secondary: #722F37;
}

html, body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    font-size: 18px;
    line-height: 1.5;
}

/* Emergency Bar - scrolls away normally */
.emergency-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: var(--red);
    color: white;
}

.emergency-bar .btn-911 {
    width: auto;
    padding: 10px 28px;
    background: white;
    color: var(--red);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.emergency-label {
    font-weight: 600;
    font-size: 16px;
}

/* Banner Bar - becomes sticky when 911 scrolls out */
.banner-bar {
    padding: 8px;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
}

/* When agency branding is active - white background */
.banner-bar.agency-branded {
    padding: 0;
    border-bottom: 1px solid var(--border);
    background: white;
}

.banner-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banner-bar.sticky.agency-branded {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.banner-placeholder {
    display: none;
    height: 66px;
}

.banner-placeholder.active {
    display: block;
}

/* Agency Branding Banner - white bg with thin horizontal burgundy stripe */
.agency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 16px;
    /* Horizontal stripe: white top 1/3, burgundy middle 1/3, white bottom 1/3 */
    background: linear-gradient(to bottom, 
        white 0%, 
        white 33.33%, 
        var(--agency-secondary) 33.33%, 
        var(--agency-secondary) 66.66%, 
        white 66.66%, 
        white 100%
    );
    height: 90px;
}

/* Logo fills full banner height edge to edge */
.agency-banner .agency-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

.agency-banner .agency-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Affiliate Banner Styles */
.affiliate-banner {
    flex: 1;
    background: linear-gradient(135deg, var(--blue-light) 0%, #dbeafe 100%);
    border: 1px solid var(--blue);
    border-radius: 8px;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s ease;
}

.affiliate-banner:active {
    transform: scale(0.98);
}

.affiliate-banner .ad-label {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 9px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.affiliate-banner .affiliate-icon {
    font-size: 22px;
    margin-right: 10px;
    flex-shrink: 0;
}

.affiliate-banner .affiliate-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.affiliate-banner .affiliate-arrow {
    font-size: 16px;
    color: var(--blue);
    margin-left: 8px;
}

.affiliate-banner.loading {
    background: var(--border);
    border-color: var(--border);
}

.btn-911 {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.visible {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.full-height {
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.modal-content h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.modal-content h2.red {
    color: var(--red);
}

.call-911-btn {
    display: block;
    width: 100%;
    padding: 20px;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
    text-decoration: none;
    text-align: center;
}

.modal-close-btn {
    width: 100%;
    padding: 16px;
    background: var(--border);
    color: var(--text);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.screen {
    display: none;
}

.screen.active {
    display: block;
}

.disclaimer-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.disclaimer-box h1 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.disclaimer-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.disclaimer-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.disclaimer-text {
    font-size: 16px;
}

.disclaimer-text strong {
    display: block;
    margin-bottom: 4px;
}

/* Terms of Service Acceptance - Clickwrap */
.tos-acceptance {
    text-align: center;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: 8px;
}

.tos-acceptance .tos-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.tos-acceptance a {
    color: var(--blue);
    text-decoration: underline;
}

.tos-acceptance a:hover {
    text-decoration: none;
}

.btn-primary {
    width: 100%;
    padding: 20px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    min-height: 64px;
}

.btn-primary:active {
    opacity: 0.9;
}

.location-box {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    text-align: center;
}

.location-box h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.location-box p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.home-note {
    background: var(--orange-light);
    border: 1px solid var(--orange);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.home-note strong {
    color: var(--orange);
}

.zip-input {
    width: 100%;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.zip-input:focus {
    outline: none;
    border-color: var(--blue);
}

.btn-secondary {
    width: 100%;
    padding: 20px;
    background: var(--blue-light);
    color: var(--blue);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.header-row h1 {
    font-size: 22px;
}

.header-buttons {
    display: flex;
    gap: 8px;
}

.header-btn {
    padding: 8px 12px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.location-badge {
    background: var(--blue-light);
    color: var(--blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.category-section {
    margin-bottom: 24px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.category-icon {
    font-size: 24px;
}

.resource-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.resource-card.sponsored {
    border-color: var(--blue);
    border-width: 2px;
}

.sponsored-badge {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Spanish availability badge - shows when resource offers Spanish support */
.spanish-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.resource-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.resource-meta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.resource-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.resource-btn {
    flex: 1;
    min-width: calc(50% - 5px);
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.resource-btn.call {
    background: var(--green);
    color: white;
}

.resource-btn.map {
    background: var(--blue);
    color: white;
}

.resource-btn.web {
    background: var(--blue-light);
    color: var(--blue);
}

.resource-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.report-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.report-link:hover {
    color: var(--orange);
}

.view-more-btn {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 2px dashed var(--border);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-secondary);
    cursor: pointer;
}

.view-more-btn:active {
    background: var(--bg);
}

.hidden-resources {
    display: none;
}

.hidden-resources.visible {
    display: block;
}

/* Browse SlingSources Section */
.browse-section {
    background: var(--blue-light);
    border-radius: 16px;
    padding: 20px;
    margin-top: 24px;
    border: 1px solid var(--blue);
    text-align: center;
}

.browse-section h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text);
}

.btn-browse {
    width: 100%;
    padding: 14px;
    background: var(--blue);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

/* Browse Modal Styles */
.browse-search-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 18px;
    font-family: inherit;
    margin-bottom: 16px;
    flex-shrink: 0;
    min-height: 52px;
}

.browse-search-input:focus {
    outline: none;
    border-color: var(--blue);
}

.browse-no-results {
    text-align: center;
    color: var(--text-secondary);
    padding: 24px 16px;
    font-size: 16px;
}

.browse-categories {
    flex: 1;
    overflow-y: auto;
    margin: 0 -32px;
    padding: 0 32px;
}

.browse-category {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.browse-category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    cursor: pointer;
    font-weight: 600;
}

.browse-category-header .cat-icon {
    font-size: 24px;
}

.browse-category-header .cat-name {
    flex: 1;
}

.browse-category-header .cat-arrow {
    color: var(--text-secondary);
    transition: transform 0.2s;
}

.browse-category.expanded .cat-arrow {
    transform: rotate(180deg);
}

.browse-category-resources {
    display: none;
    padding: 0 16px 16px;
}

.browse-category.expanded .browse-category-resources {
    display: block;
}

.browse-resource-item {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 8px;
}

.browse-resource-item .res-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.browse-resource-item .res-meta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.browse-resource-item .res-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.browse-resource-item .res-btn {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    cursor: pointer;
}

.browse-resource-item .res-btn.call {
    background: var(--green);
    color: white;
}

.browse-resource-item .res-btn.map {
    background: var(--blue);
    color: white;
}

.browse-resource-item .res-btn.web {
    background: var(--blue-light);
    color: var(--blue);
}

/* Report Issue Modal */
.report-resource-name {
    background: var(--bg);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 600;
}

.report-options {
    margin-bottom: 16px;
}

.report-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.report-option.selected {
    border-color: var(--orange);
    background: var(--orange-light);
}

.report-option input {
    width: 20px;
    height: 20px;
}

.report-notes {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 16px;
}

.report-notes:focus {
    outline: none;
    border-color: var(--orange);
}

.btn-report-submit {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-report-submit:disabled {
    background: var(--border);
    color: var(--text-secondary);
}

/* Save Section Styles */
.save-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid var(--border);
}

.save-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.btn-share {
    width: 100%;
    padding: 16px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-share:active {
    opacity: 0.9;
}

.btn-add-home {
    width: 100%;
    padding: 16px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-copy-link {
    width: 100%;
    padding: 16px;
    background: var(--blue-light);
    border: 2px solid var(--blue);
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 600;
}

.safari-note {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
}

.save-section.hidden {
    display: none;
}

/* Map Picker Modal */
.map-picker-btn {
    display: block;
    width: 100%;
    padding: 18px 20px;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    text-decoration: none;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 14px;
}

.map-picker-btn:active {
    background: var(--bg);
}

.map-picker-btn .map-icon {
    font-size: 28px;
}

.map-picker-btn .map-label {
    flex: 1;
    text-align: left;
}

.map-picker-btn .map-arrow {
    color: var(--text-secondary);
}

.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.error-box {
    background: var(--red-light);
    border: 1px solid var(--red);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: var(--red);
}

/* ==================== TRANSPORT VIEW STYLES ==================== */
.transport-screen {
    display: none;
}

.transport-screen.active {
    display: block;
}

.transport-header {
    text-align: center;
    margin-bottom: 24px;
}

.transport-header .transport-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.transport-header h1 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text);
}

.transport-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

.hospital-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 2px solid var(--red);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.hospital-card .hospital-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.hospital-card .hospital-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.hospital-card .hospital-address {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.hospital-card .hospital-contact {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hospital-card .hospital-contact a {
    color: var(--blue);
    text-decoration: none;
}

.hospital-card .hospital-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hospital-card .hospital-btn {
    flex: 1;
    min-width: calc(50% - 5px);
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.hospital-card .hospital-btn.directions {
    background: var(--blue);
    color: white;
}

.hospital-card .hospital-btn.call {
    background: var(--green);
    color: white;
}

.hospital-card .hospital-btn.web {
    background: var(--blue-light);
    color: var(--blue);
}

.tips-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.tips-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text);
}

.tips-section h3 .tips-icon {
    font-size: 24px;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.tips-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tips-list li .tip-bullet {
    color: var(--blue);
    font-weight: 700;
    flex-shrink: 0;
}

.transport-disclaimer {
    background: var(--orange-light);
    border: 1px solid var(--orange);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--orange);
    text-align: center;
}

.transport-disclaimer strong {
    display: block;
    margin-bottom: 4px;
}

/* ==================== NWS WEATHER ALERT STYLES ==================== */

/* Alert banner - shown at top of resources screen when NWS alerts active */
.nws-alert-banner {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    animation: nws-pulse 3s ease-in-out infinite;
}

.nws-alert-banner {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid var(--red);
    color: var(--red);
}

.nws-alert-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.nws-alert-text {
    flex: 1;
    line-height: 1.3;
}

@keyframes nws-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* ACTIVE NOW badge - pulsing green/red on resource cards for weather-activated shelters */
.nws-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid var(--green);
    color: #15803d;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: active-pulse 2s ease-in-out infinite;
}

@keyframes active-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
}

.nws-active-badge .nws-badge-icon {
    font-size: 16px;
}

.nws-active-badge .nws-badge-text {
    line-height: 1;
}

/* Seasonal badge - for conditional resources not currently active */
.nws-seasonal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1px solid #93c5fd;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.nws-seasonal-badge .nws-badge-icon {
    font-size: 14px;
}

/* Disaster-activated badge - for hurricane shelters etc when not active */
.nws-disaster-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-light);
    border: 1px solid #fdba74;
    color: #c2410c;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.nws-disaster-badge .nws-badge-icon {
    font-size: 14px;
}
