.clasificacion-section {
    background: linear-gradient(to bottom, #ffffff, #f4f6f9);
    padding: 4rem 0;
    border-radius: 10px;
}

.table-clasificacion {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.table-clasificacion th {
    background-color: #1e3a8a;
    /* Azul deportivo */
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.table-clasificacion td {
    vertical-align: middle;
    text-align: center;
    font-size: 0.95rem;
}

.table-clasificacion tbody tr:nth-child(1) {
    background-color: #fff8e1;
    font-weight: bold;
}

.table-clasificacion tbody tr:nth-child(2) {
    background-color: #f1f1f1;
    font-weight: bold;
}

.table-clasificacion tbody tr:nth-child(3) {
    background-color: #f0f4ff;
    font-weight: bold;
}

.table-clasificacion .img-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.medal {
    font-size: 1.4rem;
}

.text-primary {
    color: #1e3a8a !important;
    font-weight: bold;
}

@media (max-width: 768px) {

    .table-clasificacion th,
    .table-clasificacion td {
        font-size: 0.85rem;
        padding: 0.4rem;
    }

    .table-clasificacion .img-logo {
        width: 40px;
        height: 40px;
    }
}