/**
 * Charts Tables CSS - data table styling and responsive tables
 */

/* Data tables */
.weernormaal-container .data-tables {
    margin-bottom: 2rem;
}

.weernormaal-container .table-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.weernormaal-container .extreme-table {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.weernormaal-container .extreme-table h3 {
    margin: 0;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #DDD;
    color: #333;
    font-weight: normal;
}

.weernormaal-container .table-wrapper {
    max-height: 400px;
    overflow-y: auto;
}

.weernormaal-container .weather-table {
    width: 90%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 0 auto;
}

.weernormaal-container .weather-table th {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px;
    text-align: right;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-left: 1px solid #DDD;
    font-weight: normal;
    color: #333;
}

.weernormaal-container .weather-table th:first-child {
    text-align: center;
}

.weernormaal-container .weather-table td {
    padding: 8px;
    text-align: right;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    border-right: 1px solid #DDD;
    border-left: 1px solid #DDD;
    color: #333;
}

.weernormaal-container .weather-table td:first-child {
    text-align: center;
    font-weight: normal;
    color: #333;
}

.weernormaal-container .weather-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.weernormaal-container .weather-table tbody tr:nth-child(odd) {
    background-color: transparent;
}

.weernormaal-container .loading-row {
    text-align: center !important;
    color: #636e72;
    font-style: italic;
}
