/* Basic reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', Arial, sans-serif;
    background: linear-gradient(to bottom, #1a2634 0%, #2d3e50 50%, #3a4e61 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #ffffff;
    transition: background 1s ease;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
}

.page-wrapper {
    max-width: 700px;
    width: 100%;
}

.card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: visible;
}

/* First card (with search) needs higher z-index for autocomplete dropdown */
.page-wrapper > .card:first-child {
    z-index: 100;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    opacity: 0.6;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2.5rem;
}

header h1 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Search section */
.search-section {
    display: flex;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

#cityInput {
    width: 100%;
    padding: 1.5rem 180px 1.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 3rem;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.15);
}

#cityInput:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

#cityInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* City autocomplete suggestions */
.city-suggestions {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.suggestion-item {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    transition: all 0.2s ease;
}

.suggestion-item:first-child {
    border-radius: 20px 20px 0 0;
}

.suggestion-item:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.suggestion-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.suggestion-item.location-suggestion {
    background: rgba(10, 132, 255, 0.15);
    border-bottom-color: rgba(10, 132, 255, 0.3);
    justify-content: center;
}

.suggestion-item.location-suggestion:hover {
    background-color: rgba(10, 132, 255, 0.25);
    border-bottom-color: rgba(10, 132, 255, 0.4);
}

.suggestion-item.location-suggestion:only-child {
    border-bottom: none;
    border-radius: 20px;
}

.suggestion-item.location-suggestion .suggestion-name {
    text-align: center;
}

.suggestion-name {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.01em;
}

.suggestion-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

#searchBtn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 1rem 1.75rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}

#searchBtn:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.02);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

#searchBtn:active {
    transform: translateY(-50%) scale(0.98);
}

#searchBtn:disabled {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: translateY(-50%);
    border-color: rgba(255, 255, 255, 0.15);
}

#locationBtn {
    padding: 0.875rem 1rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

#locationBtn:hover {
    background: #2d2d2d;
    transform: translateY(-1px);
}

#locationBtn:active {
    transform: translateY(0);
}

/* City Label - Standalone (hidden - city name shows in search bar) */
.city-label {
    display: none;
}

/* Weather display */
.weather-display {
    /* Card styling handled by .card class */
}

/* Current Conditions Card - Compact */
.current-conditions-card {
    padding: 1.25rem 2rem;
}

.current-conditions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.condition-emoji {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.condition-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.current-temp {
    font-size: 1.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.condition-description {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    text-transform: capitalize;
}

.condition-details {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.condition-detail {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.detail-icon {
    font-size: 0.875rem;
}

/* Section headers */
.section-header {
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-header-advice {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

/* Two-column layout container */
.comparison-container {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.temperature-column {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.temperature-column .section-header {
    text-align: center;
}

.advice-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Allow text wrapping */
    padding-left: 1rem;
}

/* Hero: Temperature difference */
.difference-hero {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.difference-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

#differenceValue {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1;
}

#differenceLabel {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}


/* Temperature difference colors */
.difference-main.warmer #differenceValue,
.difference-main.warmer #differenceLabel {
    color: rgba(255, 69, 58, 1);
    text-shadow: 0 2px 8px rgba(255, 69, 58, 0.3);
}

.difference-main.colder #differenceValue,
.difference-main.colder #differenceLabel {
    color: rgba(10, 132, 255, 1);
    text-shadow: 0 2px 8px rgba(10, 132, 255, 0.3);
}

.difference-main.same #differenceValue,
.difference-main.same #differenceLabel {
    color: rgba(52, 199, 89, 1);
    text-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
}

/* Contextual suggestion */
.contextual-suggestion {
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
    flex: 1;
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contextual-suggestion.loading {
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
}

/* Temperature Forecast Chart */
.temp-forecast-wrapper {
    margin-top: 2.5rem;
    margin-bottom: 0;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.temp-forecast {
    width: 100%;
    position: relative;
}

.temp-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.temp-chart-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.temp-chart-legend {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.7);
}

.legend-line {
    width: 20px;
    height: 2px;
    background: currentColor;
}

.legend-line.today {
    background: #ffffff;
}

.legend-line.yesterday {
    background: #b0b0b0;
    background-image: repeating-linear-gradient(
        to right,
        #b0b0b0 0,
        #b0b0b0 4px,
        transparent 4px,
        transparent 8px
    );
}

.temp-chart-container {
    position: relative;
    height: 180px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.temp-chart-container canvas {
    display: block;
}

/* Recent searches */
.recent-searches {
    /* Card styling handled by .card class */
    display: none; /* Hidden for now */
}

.recent-searches h3 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#recentList {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.recent-city {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.625rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.recent-city:hover {
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Utility classes */
.hidden {
    display: none;
}

.error {
    background: rgba(139, 0, 0, 0.3);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 59, 48, 0.4);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 400;
    box-shadow:
        0 8px 32px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Loading animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .card {
        padding: 2rem;
    }

    header {
        margin-bottom: 1.5rem;
    }

    header h1 {
        font-size: 1.75rem;
    }

    header p {
        font-size: 0.9375rem;
    }

    /* Stack columns on tablet */
    .comparison-container {
        flex-direction: column;
        gap: 2rem;
    }

    .temperature-column {
        flex: 1;
        border-right: none;
        padding-right: 0;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .advice-column {
        padding-left: 0;
    }

    .section-header {
        text-align: center;
    }

    .difference-hero {
        margin-bottom: 0;
    }

    #differenceValue {
        font-size: 3rem;
    }

    #differenceLabel {
        font-size: 1.25rem;
    }

    .contextual-suggestion {
        font-size: 0.875rem;
        text-align: center;
    }

    .weather-details {
        padding-top: 2rem;
    }

    .search-input-wrapper {
        width: 100%;
    }

    #cityInput {
        font-size: 2rem;
        padding: 1.25rem 160px 1.25rem 1.25rem;
    }

    #searchBtn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .suggestion-name {
        font-size: 1.125rem;
    }

    .suggestion-location {
        font-size: 0.9375rem;
    }

    /* Current conditions responsive */
    .current-conditions-card {
        padding: 1rem 1.5rem;
    }

    .current-conditions {
        gap: 1rem;
    }

    .condition-emoji {
        font-size: 2.25rem;
    }

    .current-temp {
        font-size: 1.5rem;
    }

    .condition-description {
        font-size: 0.75rem;
    }

    .condition-detail {
        font-size: 0.75rem;
    }

    /* Temperature chart responsive */
    .temp-forecast-wrapper {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .temp-chart-container {
        height: 160px;
    }

    .temp-chart-legend {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.75rem;
    }

    .card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header {
        margin-bottom: 2rem;
    }

    #cityInput {
        font-size: 1.75rem;
        padding: 1rem 140px 1rem 1rem;
        border-radius: 14px;
    }

    #searchBtn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        border-radius: 10px;
    }

    .suggestion-item {
        padding: 1rem 1.25rem;
    }

    .suggestion-name {
        font-size: 1rem;
    }

    .suggestion-location {
        font-size: 0.875rem;
    }

    /* Stack columns on mobile */
    .comparison-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .temperature-column {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    #differenceValue {
        font-size: 2.5rem;
    }

    #differenceLabel {
        font-size: 1.125rem;
    }

    .difference-main {
        gap: 0.5rem;
    }

    .contextual-suggestion {
        font-size: 0.8125rem;
        text-align: center;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
        padding: 0.75rem 0;
    }

    .detail-value {
        text-align: left;
    }

    /* Current conditions mobile */
    .current-conditions-card {
        padding: 1rem 1.25rem;
    }

    .current-conditions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .condition-emoji {
        font-size: 2rem;
    }

    .condition-main {
        flex: 1;
        min-width: 120px;
    }

    .current-temp {
        font-size: 1.5rem;
    }

    .condition-description {
        font-size: 0.75rem;
    }

    .condition-details {
        flex-basis: 100%;
        justify-content: center;
        gap: 0.75rem;
    }

    .condition-detail {
        font-size: 0.75rem;
    }

    .detail-icon {
        font-size: 0.8125rem;
    }

    /* Temperature chart mobile */
    .temp-forecast-wrapper {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .temp-chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .temp-chart-title {
        font-size: 0.75rem;
    }

    .temp-chart-legend {
        font-size: 0.625rem;
        gap: 0.75rem;
    }

    .temp-chart-container {
        height: 140px;
    }
}

/* Rain Forecast Styles */
.rain-forecast-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.rain-forecast {
    width: 100%;
    position: relative;
}

/* Rain tooltip */
.rain-tooltip {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    line-height: 1.4;
    white-space: nowrap;
    pointer-events: none;
    z-index: 100;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: opacity 0.2s ease;
}

.rain-tooltip strong {
    font-weight: 600;
    font-size: 0.875rem;
}

.rain-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.rain-header h3 {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.rain-chance {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.375rem 0.75rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.rain-summary {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.rain-chart {
    display: flex;
    align-items: flex-end;
    height: 100px;
    gap: 3px;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.rain-bar {
    flex: 1;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.bar {
    width: 100%;
    min-height: 2px;
    background: #e5e5e5;
    border-radius: 3px 3px 0 0;
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
}

/* Dynamic background colors are set via inline styles in rainChart.js */
/* This ensures consistent absolute intensity visualization */

.bar:hover {
    opacity: 0.85;
    transform: scaleY(1.08);
}

.bar:active {
    opacity: 0.7;
    transform: scaleY(1.05);
}

.rain-time-labels {
    display: flex;
    gap: 3px;
    padding: 0.375rem 0.5rem 0;
}

.time-label {
    flex: 1;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    white-space: nowrap;
}

.loading-rain, .no-rain-data {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    font-style: italic;
    font-size: 0.9375rem;
}

/* Rain responsive adjustments */
@media (max-width: 480px) {
    .rain-forecast-wrapper {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .rain-chart {
        height: 80px;
        gap: 2px;
        padding: 0.375rem;
    }

    .rain-time-labels {
        gap: 2px;
        padding: 0.25rem 0.375rem 0;
    }

    .time-label {
        font-size: 0.625rem;
    }

    .rain-header h3 {
        font-size: 0.9375rem;
    }

    .rain-chance {
        font-size: 0.8125rem;
        padding: 0.25rem 0.5rem;
    }

    .rain-summary {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .rain-tooltip {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }

    .rain-tooltip strong {
        font-size: 0.8125rem;
    }
} 