
.weather-topbar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    white-space: nowrap;
    /*font-size: 13px;*/
    line-height: 1;
}

.weather-topbar i {
    margin-right: 3px;
}

.weather-topbar .tw-sep {
    opacity: .45;
}

.weather-card {
    max-width: 360px;
    padding: 1.25rem;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    font-family: Arial, sans-serif;
    color: #222;
}

.weather-header {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.weather-header i {
    font-size: 2rem;
}

.weather-header h3 {
    margin: 0;
    font-size: 2.2rem;
}

.weather-header small {
    color: #666;
}

.weather-temp {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}

.weather-grid div {
    padding: .75rem;
    background: #f5f7fa;
    border-radius: .75rem;
    font-size: 1.5rem;
}

.weather-grid i {
    margin-right: .25rem;
}
