.jrl-weather-box {
    border: 1px solid #d8dee8;
    border-radius: 14px;
    padding: 20px;
    margin: 20px 0;
    background: #f7fbff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    max-width: 950px;
}

.jrl-weather-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.jrl-weather-topbar h3 {
    margin: 0;
}

.jrl-radar-button {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    background: #0b63ce;
    color: #ffffff;
}

.jrl-radar-button:hover {
    opacity: 0.92;
}

.jrl-alert-wrap {
    margin-bottom: 18px;
}

.jrl-alert-banner {
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: 600;
}

.jrl-alert-red {
    background: #b30000;
    color: #ffffff;
    border: 1px solid #7f0000;
}

.jrl-alert-yellow {
    background: #ffd54f;
    color: #1f1f1f;
    border: 1px solid #c9a227;
}

.jrl-current-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.jrl-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px;
}

.jrl-card-label {
    font-size: 0.9rem;
    color: #5b6470;
    margin-bottom: 6px;
}

.jrl-card-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.jrl-observed-time {
    font-size: 0.95rem;
    color: #5b6470;
    margin-bottom: 18px;
}

.jrl-forecast-panel,
.jrl-cwop-section,
.jrl-hourly-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    margin-top: 18px;
}

.jrl-forecast-panel h4,
.jrl-cwop-section h4,
.jrl-hourly-section h4 {
    margin-top: 0;
}

.jrl-hourly-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.jrl-hourly-card {
    min-width: 120px;
    background: #f7fbff;
    border: 1px solid #d8e5f5;
    border-radius: 10px;
    padding: 12px;
    flex: 0 0 auto;
}

.jrl-hourly-time {
    font-weight: 700;
    margin-bottom: 8px;
}

.jrl-hourly-temp {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.jrl-hourly-forecast {
    font-size: 0.92rem;
    line-height: 1.3;
}

.weather-box-error {
    border: 1px solid #f0b4b4;
    background: #fff6f6;
    color: #8a1f1f;
    padding: 12px;
    border-radius: 8px;
}