.mmp-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    padding: 0 10px;
    text-transform: uppercase;
}

.mmp-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;
}

.mmp-table th,
.mmp-table td {
    white-space: nowrap;
}

.mmp-table th:nth-child(1),
.mmp-table td:nth-child(1) { /* Prueba */
    width: 20%;
}

.mmp-table th:nth-child(2),
.mmp-table td:nth-child(2) { /* MMP */
    width: 20%;
}

.mmp-table th:nth-child(3),
.mmp-table td:nth-child(3) { /* Fecha */
    width: 20%;
}

.mmp-table th:nth-child(4),
.mmp-table td:nth-child(4) { /* Lugar */
    width: 20%;
}

.mmp-table th:nth-child(5),
.mmp-table td:nth-child(5) { /* Categoría */
    width: 20%;
}

.mmp-table .athlete-header {
    text-align: center;
    padding: 8px;
}

.mmp-table .chart-btn {
    display: inline-block;
    margin-left: 10px;
    padding: 4px;
    background: none;
    border: none;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .mmp-container {
        padding: 0;
    }

    .mmp-table {
        max-width: 100%;
        margin: 0 0 10px;
    }

    .mmp-table th,
    .mmp-table td {
        width: auto;
        min-width: 0;
        padding: 6px;
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .mmp-table th,
    .mmp-table td {
        padding: 4px;
    }
}