.weather-widget {
    font-family: 'Arial', sans-serif;
    max-width: 100px;
    color: #444;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.weather-widget-current {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.weather-widget-icon {
    width: 40px;
    height: 40px;
}

.weather-widget-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.weather-widget-temp {
    font-size: 24px;
    font-weight: bold;
    margin-left: 6px;
    padding-bottom: 15px;
}

.weather-widget-forecast {
    display: none;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 5px;
    z-index: 100;
    top: 100%;
}

.weather-widget.open .weather-widget-forecast {
    display: block;
    max-height: 500px;
}

.weather-widget-day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #f5f5f5;
}

.weather-widget-day:last-child {
    border-bottom: none;
}

.weather-widget-day-name {
    font-weight: bold;
    flex: 1;
}

.weather-widget-day-icon {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}

.weather-widget-day-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.weather-widget-error {
    color: #721c24;
    padding: 10px;
    margin-bottom: 10px;
} 