:root {
    --primary-color: #ffd700;
    --secondary-color: #ffd700;
    --accent-color: #FFC107;
}

h2 {
    color: #ffd700;
    text-align: center;
}

.section {
    max-width: 1200px;
    padding: 0px;
    text-align: center;
}

.table9 {
    overflow-x: hidden;
    margin: 0 20px;
}

.table9 table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem; /* Default desktop font size */
}

.table9 th,
.table9 td {
    padding: 7px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table9 th {
    background: var(--primary-color);
    color: white;
}

.table9 thead th {
    color: black !important;
}

td.pq {
    background-color: darkgreen;
}

td.hw {
    background-color: #993333;
}
/* Mobile styles */
@media (max-width: 768px) {
    .table9 {
        margin: 0 10px;
    }
    
    .table9 table {
        font-size: 0.5rem; /* Mobile font size */
    }
    
    .table9 th,
    .table9 td {
        padding: 2px;
    }
}