/* weather.css */

/* Container für horizontales Scrollen */
.table-responsive {
    overflow-x: auto;
}

/* Wetter-Tabelle: Zebra-Streifen, Sticky-Spalte etc. */
.weather-table {
    width: 100%;
    border-collapse: collapse;
}

.weather-table th,
.weather-table td {
    text-align: center;
    vertical-align: middle;
    /* Falls du mehr oder weniger Abstand brauchst, anpassen: */
    padding: 8px;
}

/* Zebra-Look */
.zebra-light td {
    background-color: #fff; /* Weiß */
}
.zebra-dark td {
    background-color: #f9f9f9; /* Hellgrau */
}

/* Sticky-Spalte in der 1. Kolonne */
.fixed-width {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sticky-col {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: inherit; /* oder #fff, je nach Zebra-Effekt */
}

/* Ländersektion */
.country-section {
    margin-bottom: 20px;
}
.country-header {
    font-size: 1.3rem;
    padding: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Du kannst hier beliebig weitere Klassen für 
   andere Farben oder Layouts definieren. */