/* 1. Global Layout & Background */
body {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif; /* Recommended for a modern tech feel */
}

/* 2. Glassmorphism Core */
.glass-card {
    background: rgba(255, 255, 255, 0.03); /* Slightly more subtle */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* 3. Map Adjustments for Dashboard */
#map {
    height: 380px !important; /* Taller for the right-hand column */
    width: 100% !important;
    border-radius: 2.5rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 4. Forecast Window Refinements */
#forecast-window {
    scroll-behavior: smooth;
    display: flex;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

/* Customize the look of individual forecast cards */
#forecast-window > div {
    min-width: 130px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

#forecast-window > div:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* 5. Utility: Scrollbar Hiding */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 6. Icon & Elements */
#weather-icon {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

#suggestions {
    z-index: 1000 !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.leaflet-container {
    background: #0f172a !important;
}