body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
}

table {
    width: 90%;
    border-collapse: collapse;
    margin: 0 auto;
    border: 1px solid #e20000;
        /* tambahkan ini */
}

th,
td {
    padding: 10px;
    text-align: center;
    border: 1px solid #e40000;
        /* tambahkan ini */
}

th {
    background-color: #ffffff;
}

tr:nth-child(even) {
    background-color: #ffffff;
}

.page-center {
    min-height: 30vh;
    display: flex;
    flex-direction: column;
}

.table-title {
    text-align: center;
    margin-bottom: 25px;
}

* {
    box-sizing: border-box;
}

table,
th,
td {
    border: 1px solid black !important;
    border-collapse: collapse;
}

/* ===== CHART ===== */
.chart-container {
    width: 90%;
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
}

canvas {
    width: 100% !important;
    height: auto !important;
}

/* ===== TABEL SUHU & KELEMBAPAN ===== */
.wrap-tabel {
    display: flex;
    gap: 120px;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    margin: 40px 40px;
}

.tbl-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tbl-title {
    font-size: 18px;
    font-weight: bold;
    color: black;
    margin: 16px 0;
}

.tbl {
    width: 400px;
    border-collapse: collapse;
    background: white;
    color: black;
    border: 1px solid black;
        /* tambahkan ini */
}

.tbl th,
.tbl td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
}

.tbl th {
    background: #f0f0f0;
    color: black;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {

.chart-container {
        width: 100%;
        max-width: 1200px;
        
        margin: 0 auto;
        position: relative;
    }

    .wrap-tabel {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 10px;
        gap: 20px;
    }

    .tbl {
        width: 90vw;
    }

    
}