.records-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    padding: 0 10px;
    text-transform: uppercase;
}

.records-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 20px;
    border-collapse: collapse;
    font-family: inherit;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    table-layout: auto;
}

.records-table th,
.records-table td {
    padding: 6px;
}

.records-table th[colspan="3"] {
    width: 50%;
}

.records-table .prueba-header {
    background-color: #C74D49;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.records-table .gender-header.female-header {
    background-color: #D96662;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.records-table .gender-header.male-header {
    background-color: #8F2926;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.records-table th:nth-child(1),
.records-table td:nth-child(1), /* Atleta (Femenino) */
.records-table th:nth-child(4),
.records-table td:nth-child(4) { /* Atleta (Masculino) */
    width: 35%;
    min-width: 200px;
}

.records-table th:nth-child(2),
.records-table td:nth-child(2), /* Record (Femenino) */
.records-table th:nth-child(5),
.records-table td:nth-child(5) { /* Record (Masculino) */
    width: 25%;
    min-width: 150px;
}

.records-table th:nth-child(3),
.records-table td:nth-child(3), /* Fecha (Femenino) */
.records-table th:nth-child(6),
.records-table td:nth-child(6) { /* Fecha (Masculino) */
    width: 20%;
    min-width: 120px;
}

@media (max-width: 768px) {
    .records-container {
        padding: 0;
    }

    .records-table {
        max-width: 100%;
        margin: 0 0 10px;
    }

    .records-table th,
    .records-table td {
        width: auto;
        min-width: 0;
        padding: 6px;
        font-size: 12px;
    }

    .records-table th:nth-child(1),
    .records-table td:nth-child(1), /* Atleta (Femenino) */
    .records-table th:nth-child(4),
    .records-table td:nth-child(4) { /* Atleta (Masculino) */
        min-width: 100px;
        word-break: break-word;
    }

    .records-table th:nth-child(2),
    .records-table td:nth-child(2), /* Record (Femenino) */
    .records-table th:nth-child(5),
    .records-table td:nth-child(5) { /* Record (Masculino) */
        min-width: 60px;
    }

    .records-table th:nth-child(3),
    .records-table td:nth-child(3), /* Fecha (Femenino) */
    .records-table th:nth-child(6),
    .records-table td:nth-child(6) { /* Fecha (Masculino) */
        min-width: 70px;
    }
}

@media (max-width: 600px) {
    .records-table th,
    .records-table td {
        padding: 4px;
    }

    .records-table th:nth-child(1),
    .records-table td:nth-child(1), /* Atleta (Femenino) */
    .records-table th:nth-child(4),
    .records-table td:nth-child(4) { /* Atleta (Masculino) */
        min-width: 80px;
    }

    .records-table th:nth-child(2),
    .records-table td:nth-child(2), /* Record (Femenino) */
    .records-table th:nth-child(5),
    .records-table td:nth-child(5) { /* Record (Masculino) */
        min-width: 50px;
    }

    .records-table th:nth-child(3),
    .records-table td:nth-child(3), /* Fecha (Femenino) */
    .records-table th:nth-child(6),
    .records-table td:nth-child(6) { /* Fecha (Masculino) */
        min-width: 60px;
    }
}