/* Weather Widget Styles */
.weather-widget {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #00a896;
    /* Chat button Teal */
    padding: 8px 10px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    font-family: 'Futura', sans-serif;
    color: white;
    /* White text */
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
    border: 2px solid white;
    /* White border to match buttons */
    transition: transform 0.3s ease;
    height: 48px;
    box-sizing: border-box;
}

.weather-widget:hover {
    transform: translateY(2px);
}

.weather-icon {
    font-size: 1.5rem;
    color: white;
    /* White icon */
}

.weather-temp {
    font-weight: bold;
    font-size: 1.1rem;
}

.weather-loc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    /* Slightly transparent white */
    margin-left: 5px;
}

@media (max-width: 768px) {
    .weather-widget {
        /* Keep it sticky at top left on mobile */
        top: 20px;
        left: 20px;
        bottom: auto;
    }

    .weather-loc {
        display: none;
    }
}