.weather-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    padding: 2px;
    color: #000000;
    width: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(240, 240, 0, 0.1);
}

.weather-icon {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0px 4px 4px rgba(240,240,0,0.1));
}

.weather-temp {
    font-size: 16pt;
    
    margin: 0;
    color: #000000; /* Deep forest green */
}

.weather-desc {
    text-transform: capitalize;
    margin-bottom: 8px;
}

.weather-meta {
    font-size: 0.85rem;
    opacity: 0.8;
}