.pct-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #ffffff;
}

.pct-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    font-family: Arial, sans-serif;
}

.pct-table thead th {
    background: #0d47a1;
    color: #ffffff;
    padding: 14px 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pct-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eeeeee;
    text-align: center;
    font-size: 14px;
}

.pct-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.pct-table tbody tr:hover {
    background: #f1f7ff;
    transition: 0.2s ease;
}

/* Top 3 Teams */
/*
.pct-table tbody tr:nth-child(1) {
    background: #fff8e1;
    font-weight: bold;
}

.pct-table tbody tr:nth-child(2) {
    background: #f5f5f5;
}

.pct-table tbody tr:nth-child(3) {
    background: #fff3e0;
}
*/

/* Position Column */

.pct-table td:first-child {
    font-weight: bold;
    color: #0d47a1;
}

/* Team Name Column */

.pct-table td:nth-child(2) {
    text-align: left;
    font-weight: 600;
}

/* Key Section */

.pct-key {
    padding: 15px;
    font-size: 13px;
    line-height: 1.8;
    background: #fafafa;
    border-top: 1px solid #eeeeee;
}

/* Admin Help Section */

.pct-help-section {
    background: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    line-height: 1.8;
}

.pct-help-section h3 {
    margin-top: 0;
    color: #0d47a1;
}

.pct-help-section code {
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
}


/* Mobile */

@media screen and (max-width: 768px) {

    .pct-table {
        min-width: 700px;
    }

    .pct-table th,
    .pct-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
}



