/**
 * Current Conditions Styles for Weather Theme
 * Version: 1.0.3
 * Updated: 2025-05-31
 */

/* Current Conditions and Metric Titles */
.weather-grid-section .weather-box h3.box-title {
    font-size: 1.25rem !important; /* Adjusted font size */
    color: #0b863a !important; /* Green color matching weather.css .box-title */
    margin-bottom: 0.5rem !important;
    text-decoration: none !important; /* Remove underline from entire title by default */
}

/* Underline single-word titles (e.g., Rainfall, Forecast) */
.weather-grid-section .weather-box h3.box-title:not(:has(.underline-last-word)) {
    text-decoration: underline !important;
    text-decoration-color: #000000 !important; /* Black underline for single-word titles */
}

/* Underline only the last word of two-word titles */
.weather-grid-section .weather-box h3.box-title .underline-last-word {
    text-decoration: underline !important;
    text-decoration-color: #000000 !important; /* Black underline for the last word */
}

/* Ensure proper rendering */
.weather-grid-section .weather-box h3.box-title {
    position: relative !important;
    display: inline-block !important;
}

/* Style metric values in Current Conditions box */
.weather-grid-section .weather-box.current-conditions-box .metric-value {
    color: #3b82f6 !important; /* Blue color for metric values */
}
