body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; font-family: 'Segoe UI', sans-serif; background: #000; color: white; }

#map { height: 100vh; width: 100vw; z-index: 1; }

.ui-overlay {
    position: absolute;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 8px;
    pointer-events: auto;
}

.top-bar {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
    width: 90%;
    justify-content: space-between;
}

#location-name { font-size: 1.1rem; margin: 0; }
#notify-btn {
    background: #3498db; border: none; padding: 8px 12px; color: white; border-radius: 4px; cursor: pointer;
}
#notify-btn.hidden { display: none; }

.bottom-controls {
    bottom: 80px; /* Space for Ad */
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ad-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px; /* AdSense Standard Height */
    background: #222;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

#forecast-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.precip-indicator { color: #00d2ff; } /* Snow/Rain Turquoise hint */

input[type=range] {
    width: 100%;
    accent-color: #3498db;
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #aaa;
}