/* Estilos para hacer la tabla responsiva */
.responsive-table {
    width: 100%;
    overflow-x: auto;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    min-width: 400px;
}

.responsive-table th, .responsive-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.responsive-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.responsive-table tr:hover {
    background-color: #f1f1f1;
}

.responsive-table td[style="color:red;"] {
    font-weight: bold;
}

/* Para pantallas pequeñas */
@media (max-width: 600px) {
    .responsive-table table, .responsive-table thead, .responsive-table tbody, .responsive-table th, .responsive-table td, .responsive-table tr {
        display: block;
    }

    .responsive-table thead tr {
        display: none;
    }

    .responsive-table tr {
        margin-bottom: 10px;
    }

    .responsive-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }

    .responsive-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: bold;
        text-align: left;
    }
}
