/* 111 Rentals - Full Premium Stylesheet */

.weather-dashboard-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- 5-DAY SLABS SECTION --- */
.weather-floating-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    padding: 10px 0 30px 0;
    width: 100%;
}

.glass-slab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    min-width: 0;
    background: rgba(255, 255, 255, 0.65); 
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 22px;
    
    /* Premium Glass Borders */
    border-top: 1.5px solid rgba(255, 255, 255, 0.9);
    border-left: 1.5px solid rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    /* Elevation Shadows */
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-slab:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pill-day {
    background: #949494;
    color: white !important;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.slab-date {
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 8px;
}

.slab-icon {
    margin: 8px 0;
}

.slab-icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.temp-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}

.max-t {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111;
}

.min-t {
    font-size: 0.95rem;
    font-weight: 600;
    color: #aaa; /* Lighter / Less Dark */
}

/* --- 10-DAY WIND GRAPH SECTION --- */
.glass-slab-main {
    margin: 20px auto;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.wind-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

.wind-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 200px; /* Graph height */
    gap: 10px;
}

.wind-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.wind-bar-axis {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* BARS GROW FROM BOTTOM */
}

.wind-bar-fill {
    width: 100%;
    background: linear-gradient(to top, #F76700, #ff954d); 
    border-radius: 8px 8px 4px 4px;
    position: relative;
    display: flex;
    justify-content: center;
    transition: height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.wind-value {
    position: absolute;
    top: 10px;
    font-size: 0.65rem;
    font-weight: 900;
    color: white;
    transform: rotate(-90deg); /* Fits inside skinny bars */
    white-space: nowrap;
}

.wind-date {
    margin-top: 15px;
    font-size: 0.6rem;
    font-weight: 800;
    color: #999;
}

/* --- RESPONSIVE MOBILE TWEAKS --- */
@media (max-width: 600px) {
    .weather-floating-wrapper { gap: 6px; }
    .glass-slab { padding: 15px 4px; border-radius: 16px; }
    
    .pill-day { font-size: 0.5rem; padding: 1px 6px; }
    .slab-date { font-size: 0.55rem; }
    .slab-icon svg { width: 24px; height: 24px; }
    .max-t { font-size: 1.1rem; }
    .min-t { font-size: 0.75rem; }

    .wind-bar-container { height: 150px; gap: 5px; }
    .wind-title { font-size: 0.65rem; margin-bottom: 15px; }
    .wind-value { font-size: 0.5rem; top: 5px; }
    .wind-date { font-size: 0.5rem; margin-top: 8px; }
}