/* --- Premium Re-design Design Tokens & Variables for country.html --- */
:root {
    --font-display: 'Outfit', Arial, sans-serif;
    --font-sans: 'Outfit', Arial, sans-serif;
    --font-mono: 'Inconsolata', monospace;
    
    /* Harmonious HSL colors matching the samay design system */
    --bg-dark-start: hsl(222, 47%, 7%);
    --bg-dark-end: hsl(224, 71%, 4%);
    --glass-bg: hsla(222, 47%, 11%, 0.65);
    --glass-border: hsla(0, 0%, 100%, 0.08);
    
    --brand-primary: hsl(340, 71%, 54%); /* vibrant pink */
    --brand-accent: hsl(190, 90%, 45%); /* glowing cyan */
    --brand-success: hsl(150, 70%, 45%); /* emerald green */
    --brand-warning: hsl(25, 95%, 45%); /* caution orange */
    
    --text-main: hsl(215, 25%, 27%);
    --text-muted: hsl(218, 11%, 47%);
    --text-light: hsl(210, 40%, 98%);
    --text-light-muted: hsl(215, 20%, 75%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --glow: 0 0 15px rgba(6, 182, 212, 0.25);
}

/* Base text elements Outfit font */
body, p, span, a, h1, h2, h3, h4, h5, h6, input, button, select, textarea, label {
    font-family: 'Outfit', Arial, sans-serif;
}

/* Inconsolata strictly to clock digits to prevent layout shifts */
.country-hero-live-time,
.timezone-row-time,
.popular-city-time {
    font-family: 'Inconsolata', monospace !important;
}

.iceberg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Hero Section styling --- */
.country-hero-section {
    background: #ffffff;
    color: var(--text-main);
    padding: 50px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 10;
}

.country-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.8;
    pointer-events: none;
}

.country-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 32px;
    align-items: start;
}

.country-title-area h1 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 12px 0;
    background: linear-gradient(to right, #0f172a 30%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.country-subtitle-area {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Country Page widgets list */
.country-clocks-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.country-hero-live-time {
    font-size: 52px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 4px 0;
    letter-spacing: 1px;
}

.country-hero-live-date {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.country-solar-countdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}

.solar-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.solar-card-icon {
    font-size: 24px;
}

.solar-card-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.solar-card-title {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.solar-card-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
}

/* Next Holiday countdown banner style */
.next-holiday-countdown-banner {
    background: linear-gradient(135deg, hsl(340, 71%, 95%) 0%, hsl(190, 90%, 95%) 100%);
    border: 1px solid hsl(340, 70%, 85%);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.next-holiday-countdown-banner span.emoji {
    font-size: 28px;
}

.next-holiday-countdown-banner div {
    text-align: left;
}

.next-holiday-countdown-banner h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-primary);
}

.next-holiday-countdown-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
}

/* Dynamic SVG Timezone borders schematic styling */
.svg-timezone-schematic-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.svg-timezone-schematic-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.timezone-schematic-canvas {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schematic-tz-bar {
    height: 48px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.schematic-tz-division {
    position: absolute;
    top: 0;
    bottom: 0;
    border-left: 2px dashed rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.schematic-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.legend-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legend-item span.abbr {
    background: var(--brand-primary);
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
}

/* --- Inline Time Converter widget --- */
.inline-converter-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.inline-converter-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.inline-converter-inputs {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 16px;
    margin-bottom: 20px;
    align-items: end;
}

.inline-converter-inputs label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.inline-converter-inputs select, .inline-converter-inputs input {
    height: 40px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    width: 100%;
}

.inline-converter-inputs select:focus, .inline-converter-inputs input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 8px rgba(221, 53, 110, 0.15);
    outline: none;
}

.inline-converter-results {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
}

.converter-result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.converter-result-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.converter-result-row strong {
    color: var(--text-main);
}

.converter-result-row span.time-val {
    color: var(--brand-primary);
    font-weight: 700;
    font-family: var(--font-mono);
}

/* --- Details Table/Layout upgrade --- */
.country-details-layout {
    padding: 60px 0;
    background: #f8fafc;
}

.country-details-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.country-details-box h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

/* Time zone grid rows styling */
.tz-data-grid {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px;
}

.tz-grid-header, .tz-grid-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
    padding: 12px 16px;
    font-size: 14px;
}

.tz-grid-header {
    background-color: #f8fafc;
    font-weight: 700;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
}

.tz-grid-row {
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    background: #ffffff;
    transition: background 0.2s ease;
}

.tz-grid-row:hover {
    background-color: #f8fafc;
}

.tz-grid-row:last-child {
    border-bottom: none;
}

.tz-grid-row span.iana {
    color: var(--text-muted);
    font-size: 13px;
}

.tz-grid-row span.time {
    font-weight: 700;
    color: var(--brand-primary);
}

.tz-grid-row span.offset {
    color: #3b82f6;
    font-weight: 600;
}

/* Popular cities context badges */
.popular-city-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.popular-city-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.popular-city-card a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    text-decoration: none !important;
}

.popular-city-card a:hover {
    color: var(--brand-primary);
}

.popular-city-info-badge {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.popular-city-info-badge span.abbr {
    color: var(--brand-primary);
    font-weight: 700;
    margin-right: 6px;
}

.popular-city-info-badge span.time {
    font-family: var(--font-mono);
}

/* Rich SEO accordion panels */
.accordions-container {
    max-width: 850px;
    margin: 30px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

details.seo-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

details.seo-accordion:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

details.seo-accordion summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    user-select: none;
    transition: background-color 0.2s ease;
}

details.seo-accordion summary::-webkit-details-marker {
    display: none;
}

details.seo-accordion summary:hover {
    background-color: #f8fafc;
}

details.seo-accordion[open] summary {
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

details.seo-accordion summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-right: 6px;
}

details.seo-accordion[open] summary::after {
    transform: rotate(-135deg);
}

.accordion-content {
    padding: 24px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.65;
    background: #ffffff;
}

.accordion-content p {
    margin-bottom: 16px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 0 10px 0;
}

/* --- Upgraded Components for All 12 Country Perspectives --- */

/* Meta Badges in Hero */
.country-meta-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.meta-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}
.meta-badge-accent {
    background: #e0f2fe;
    color: #0369a1;
    border-color: #bae6fd;
}

/* Live Office / Business Status Badge */
.live-business-status-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.status-indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #94a3b8;
}
.status-indicator-dot.pulse {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: statusPulse 2s infinite;
}
@keyframes statusPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.status-indicator-dot.status-open {
    background: #22c55e;
}
.status-indicator-dot.status-lunch {
    background: #f59e0b;
}
.status-indicator-dot.status-closed {
    background: #ef4444;
}
.status-indicator-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.status-indicator-text strong {
    font-size: 14px;
    color: #0f172a;
}
.status-indicator-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Clock Header and Quick Facts */
.clock-badge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.live-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #059669;
    background: #ecfdf5;
    padding: 3px 8px;
    border-radius: 6px;
}
.tz-standard-pill {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
}
.clock-quick-facts-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    margin-top: 16px;
}
.fact-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.fact-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.fact-val {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 2px;
}

/* Section Title with Badge */
.section-title-with-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}
.badge-pill-soft {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 20px;
    border: 1px solid #dbeafe;
}

/* DST Radar Card */
.dst-radar-card {
    border-left: 5px solid #94a3b8;
}
.dst-radar-card.dst-active {
    border-left-color: #22c55e;
    background: linear-gradient(to right, #f0fdf4, #ffffff 30%);
}
.dst-radar-card.dst-inactive {
    border-left-color: #64748b;
}
.dst-radar-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.dst-icon-box {
    font-size: 36px;
    line-height: 1;
}
.dst-text-details h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}
.dst-text-details p {
    font-size: 14px;
    color: #334155;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Call Window Cards */
.call-window-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}
.call-window-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}
.call-window-header {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.call-window-time {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 8px;
}
.call-window-reason {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Meeting Overlap Summary */
.meeting-overlap-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}
.overlap-col {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}
.good-overlap {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}
.challenge-overlap {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}

/* Interactive 24-Hour Slider */
.interactive-slider-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}
.slider-comparison-container {
    padding: 10px 0;
}
.slider-time-display-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
}
.slider-box {
    flex: 1;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.user-time-box {
    border-color: #38bdf8;
}
.target-time-box {
    border-color: var(--brand-primary);
}
.slider-box-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.slider-box-val {
    display: block;
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}
.slider-box-sub {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}
.slider-direction-arrow {
    font-size: 24px;
    color: #94a3b8;
}
.range-slider-wrapper {
    position: relative;
    padding: 0 10px;
}
.custom-range-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    cursor: pointer;
    accent-color: var(--brand-primary);
}
.slider-hours-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #64748b;
    margin-top: 10px;
    font-weight: 600;
}

/* Time Twins */
.twin-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.twin-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    transition: all 0.2s;
}
.twin-pill:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}
.relative-diff-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
}
.relative-diff-box h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}
.relative-diff-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.relative-diff-box li {
    font-size: 14px;
    color: #334155;
    padding: 6px 0;
    border-bottom: 1px dashed #e2e8f0;
}
.relative-diff-box li:last-child {
    border-bottom: none;
}
.diff-highlight {
    font-weight: 700;
    color: var(--brand-primary);
}

/* Multi-Year Holiday Filter Bar */
.holiday-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
}
.year-buttons-group, .category-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.year-filter-btn, .cat-filter-btn {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.year-filter-btn:hover, .cat-filter-btn:hover {
    background: #f1f5f9;
}
.year-filter-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}
.cat-filter-btn.active {
    background: var(--brand-primary);
    color: #ffffff;
    border-color: var(--brand-primary);
}
.holiday-data-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
}

/* Travel & Jet Lag */
.travel-card {
    height: 100%;
}
.travel-tip-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.tip-metric-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}
.tip-metric-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.tip-metric-val {
    font-size: 18px;
    font-weight: 800;
}

/* Solar Extremes */
.solar-extreme-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
}
.solar-extreme-card .icon {
    font-size: 24px;
    display: block;
    margin-bottom: 6px;
}
.solar-extreme-card .title {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}
.solar-extreme-card .val {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    display: block;
}

/* Responsiveness media queries */
@media (max-width: 991px) {
    .country-hero-grid {
        grid-template-columns: 1fr;
    }
    .slider-time-display-grid {
        flex-direction: column;
        gap: 12px;
    }
    .slider-direction-arrow {
        transform: rotate(90deg);
    }
    .meeting-overlap-summary {
        grid-template-columns: 1fr;
    }
    .travel-tip-row {
        grid-template-columns: 1fr;
    }
    .tz-grid-header, .tz-grid-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .tz-grid-header span:nth-child(3), .tz-grid-header span:nth-child(4),
    .tz-grid-row span:nth-child(3), .tz-grid-row span:nth-child(4) {
        display: none;
    }
}

