        body {
            
            margin: 0;
            padding: 0;
            min-height: 100vh;
            position: relative;
            background-color: #f0f2f5; /* Default background, will be visible through transparent areas */
        }
        
        #weather-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
            color: white;
            cursor: pointer;
            z-index: 1001;
            transition: background-color 0.3s, transform 0.3s;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        #weather-toggle:hover {
            
           
        }
        
        #weather-container {
			font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
			position: fixed;
            bottom: 80px;
            right: 20px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 200px;
            width: calc(100% - 40px);
            max-height: 80vh;
            overflow-y: auto;
            z-index: 1000;
            transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
            transform-origin: bottom right;
            backdrop-filter: blur(10px);
        }
        
        #weather-container.hidden {
            transform: translateX(100%);
            opacity: 0;
            pointer-events: none;
        }
        
        #forecast-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .forecast-day {
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            padding: 12px;
            transition: transform 0.3s;
            backdrop-filter: blur(5px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .forecast-day:hover {
            //transform: translateX(5px);
            //background-color: rgba(255, 255, 255, 0.4);
        }
        
        .day-name {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .weather-info {
            display: flex;
            align-items: center;
        }
        
        .weather-icon {
            margin-right: 8px;
            width: 36px;
            height: 36px;
        }
        
        .location {
            font-weight: bold;
            margin-top: 15px;
            text-align: center;
            color: #000000;
            padding: 8px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
        }
        
        #loading {
            text-align: center;
            color: #2c3e50;
            padding: 15px;
        }
        
        .error {
            color: #e74c3c;
            text-align: center;
            padding: 10px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 8px;
        }
        
        .temperature {
            font-size: 18px;
            font-weight: bold;
            color: #000000;
        }
        
        .description {
            margin-left: 5px;
            color: #161F28;
        }
