/* Styles for Weather App */
#app-weather {
    background-image: url('/IMG_1515.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

#app-weather::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

#app-weather .weather-content {
    padding: 60px 20px 20px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

#app-weather .weather-main { margin-bottom: 40px; }
#app-weather .weather-main .location { font-size: 34px; font-weight: 400; margin: 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
#app-weather .weather-main .temperature { font-size: 80px; font-weight: 200; margin: -10px 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
#app-weather .weather-main .condition { font-size: 20px; font-weight: 400; color: #f0f0f0; margin: 0; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
#app-weather .weather-main .high-low { font-size: 20px; font-weight: 500; margin: 5px 0 0 0; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }

#app-weather .locations-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#app-weather .location-item {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#app-weather .location-details h2, #app-weather .location-details h3 {
    margin: 0;
    padding: 0;
    font-weight: 500;
}
#app-weather .location-details h2 { font-size: 20px; }
#app-weather .location-details h3 { font-size: 14px; color: #e0e0e0; }
#app-weather .location-item .location-temp { font-size: 32px; font-weight: 300; }

