body {
    background: linear-gradient(135deg, #6cc1ff, #3a8dff);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.container {
    flex: 1;
    margin-top: 20px;
    margin-bottom: 20px;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: #fff;
    padding: 20px;
}

footer.footer {
    background-color: #1e3a8a;
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-top: auto;
}

.navbar-brand {
    font-weight: bold;
}

.weather-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* a tartalom fent, a gomb lent */
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: transform .2s, box-shadow .2s;
    min-height: 320px; /* egységes magasság minden kártyának */
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.weather-icon {
    width: 70px;
}

.btn-remove {
    margin-top: 15px;      /* kis távolság a tartalomtól */
    border-radius: 12px;   /* lekerekített sarkok */
}

.city-map {
    height: 160px;
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}

