/* ---------------------------------------- */
/* --- Past Winners Table (IBM Style) ----- */
/* ---------------------------------------- */

.event-past-winners-wrapper {
    margin: 35px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Table */
.event-past-winners-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #222;
}

/* Header — IBM Blue */
.event-past-winners-table thead {
    background: #0023a7;
}

.event-past-winners-table th {
    padding: 14px 18px;
    font-weight: 600; /* לא בולד, אבל לא דק */
    text-align: left;
    color: #ffffff;
    border-bottom: 1px solid #001a82;
    letter-spacing: 0.2px;
    font-size: 15px;
}

/* Icons inside header only */
.event-past-winners-table th .event-icon {
    margin-right: 6px;
    font-size: 15px;
    opacity: 0.9;
}

/* Rows */
.event-past-winners-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 500; /* טקסט לא דק מדי */
    color: #222;
}

/* Champion highlight */
.event-past-winners-table td.champion-cell {
    font-weight: 600;
    color: #b33f00; /* כתום שלך */
}

/* Alternating row colors — soft, calm */
.event-past-winners-table tbody tr:nth-child(odd) {
    background: #ffffff;
}

.event-past-winners-table tbody tr:nth-child(even) {
    background: #f7f7f7;
}

/* Hover — EXACTLY like your prediction boxes */
.event-past-winners-table tbody tr:hover {
    background: #fdf7e6;
    border-color: #f0c14b;
    transition: 0.2s;
}

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

    /* Hide columns 4 & 5 */
    .event-past-winners-table th:nth-child(4),
    .event-past-winners-table td:nth-child(4),
    .event-past-winners-table th:nth-child(5),
    .event-past-winners-table td:nth-child(5) {
        display: none;
    }

    .event-past-winners-table {
        font-size: 14px;
    }

    .event-past-winners-table th,
    .event-past-winners-table td {
        padding: 10px 12px;
    }
}

.event-past-winners-container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Make season column bold (but not the header) */
.event-past-winners-table tbody td:first-child {
    font-weight: 700;
}