/* Base Container Styles */
.lww-weather-container {
    padding: 20px;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.lww-header {
    margin-bottom: 15px;
}

.lww-temp-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lww-temp {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.lww-desc {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 0.9;
}

.lww-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.lww-detail {
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
}

.lww-detail strong {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-bottom: 2px;
}

/* Forecast Styles */
.lww-forecast {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.lww-forecast h4 {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.lww-forecast-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.lww-f-date {
    font-weight: 600;
    width: 45px;
}

.lww-f-desc {
    flex-grow: 1;
    padding: 0 10px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.lww-f-temp {
    font-weight: 700;
}

/* --- THEMES --- */

/* Professional Light */
.lww-theme-light {
    background: #ffffff;
    color: #333;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* Sleek Dark */
.lww-theme-dark {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.lww-theme-dark .lww-details,
.lww-theme-dark .lww-forecast {
    border-top-color: rgba(255,255,255,0.1);
}

/* Modern Glass */
.lww-theme-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit; /* Inherits from site background */
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}
.lww-theme-glass .lww-details,
.lww-theme-glass .lww-forecast {
    border-top-color: rgba(255,255,255,0.2);
}

/* Minimalist */
.lww-theme-minimal {
    background: transparent;
    padding: 0;
    color: inherit;
}
.lww-theme-minimal .lww-details,
.lww-theme-minimal .lww-forecast {
    border-top: none;
}
.lww-theme-minimal .lww-temp {
    font-size: 2.5rem;
}

/* Shortcode Styles (Header optimized) */
.lww-weather-shortcode {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    padding: 5px 10px;
}

.lww-weather-shortcode .lww-temp {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.lww-weather-shortcode .lww-desc {
    font-size: 0.85rem;
    font-weight: 400;
}

.lww-weather-shortcode .lww-feels,
.lww-weather-shortcode .lww-hum {
    font-size: 0.75rem;
    opacity: 0.7;
}

.lww-shortcode-forecast {
    display: flex;
    gap: 10px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(0,0,0,0.1);
    font-size: 0.75rem;
}

.lww-sf-day {
    white-space: nowrap;
}

.lww-sf-day strong {
    opacity: 0.7;
}
	font-size: 0.85em;
	color: #888;
	font-weight: normal;
}
