
#pr-section {
    background-color: #7b00bd;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
#pr-section h4 {
    font-size: 60px;
    margin-bottom: 20px;
}

/* =========================
   MODERN TABLE STYLE
========================= */
#pr-section table {
    margin: 30px auto;
    border-collapse: collapse;
    width: 85%;
    max-width: 900px;
    background: #260042;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.25);
}

/* Header */
#pr-section th {
    background: #9d38ff;
    color: white;
    padding: 16px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cells */
#pr-section td {
    padding: 14px;
    font-size: 17px;
    color: #f1d9ff;
}

/* Zebra rows */
#pr-section tr:nth-child(even) {
    background: #32005a;
}

/* Hover highlight */
#pr-section tr:hover {
    background: #431078;
    transition: 0.25s ease-in-out;
}

/* Center all text */
#pr-section td, 
#pr-section th {
    text-align: center;
}

/* Links inside table */
#pr-section a {
    color: #c98aff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

#pr-section a:hover {
    color: #ffffff;
}
/* Make EVENT column wider + bold */
#pr-section td:nth-child(4),
#pr-section th:nth-child(4) {
    font-weight: bold;
    font-size: 40px;
    -webkit-text-fill-color: white;
    width: 150px;   /* Increase or decrease as needed */
}
/* =========================
   FIX COLUMN WIDTHS
   (Based on your final order)
   1. Competition (single)
   2. Date (single)
   3. Single
   4. Event
   5. Average
   6. Date (average)
   7. Competition (average)
========================= */

/* Competition columns: 1 & 7 */
#pr-section td:nth-child(1),
#pr-section th:nth-child(1),
#pr-section td:nth-child(7),
#pr-section th:nth-child(7) {
    width: 240px;  /* Adjust if needed */
}

/* Date columns: 2 & 6 */
#pr-section td:nth-child(2),
#pr-section th:nth-child(2),
#pr-section td:nth-child(6),
#pr-section th:nth-child(6) {
    width: 140px;
}

/* Single & Average: 3 & 5 */
#pr-section td:nth-child(3),
#pr-section th:nth-child(3),
#pr-section td:nth-child(5),
#pr-section th:nth-child(5) {
    width: 110px;
    font-weight: bold; /* Optional but looks clean */
}
/* Animation for row fade-in */
.fade-row {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInRow 0.6s ease forwards;
}

@keyframes fadeInRow {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



