
.cities-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}
.city-card {
    width: fit-content;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
}
.city-name {
    font-size: 0.9rem;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    background-color: #3498db;
    color: white;
}
.current-weather {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 8px;
    background-color: #3498db;
    color: white;
}
.current-main {
    text-align: center;
}
.current-temp {
    font-size: 1.1rem;
    font-weight: bold;
}
.current-icon {
    font-size: 1.5rem;
    color: white;
}
.forecast-container {
    display: flex;
    gap: 1px;
    background-color: #2980b9;
    padding: 3px;
}
.forecast-day {
    min-width: 50px;
    text-align: center;
    padding: 3px;
    font-size: 0.7rem;
    border-radius: 3px;
    background-color: #2980b9;
    color: white;
    flex: 1;
}
.day-name {
    font-weight: bold;
    margin-bottom: 2px;
}
.forecast-icon {
    font-size: 0.9rem;
    margin: 2px 0;
    color: white;
}
.forecast-temp {
    font-size: 0.7rem;
}
@media (max-width: 500px) {
    .forecast-day { min-width: 45px; }
    .city-name, .current-temp { font-size: 0.8rem; }
}