.weather-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #2980b9;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    /* Creates ellipse shape */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1;
    min-width: 100px;
}

.weather-icon {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.weather-temp {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.weather-error {
    opacity: 0.8;
}