/* Para pantallas más pequeñas que 768px */
@media (max-width: 767px) {
    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    th, td, tr {
        font-size: 8px;
    }
}

/* Para pantallas más grandes que 768px */
@media (min-width: 768px) {
    .container {
        display: flex;
        flex-direction: row;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    text-align: center;
    padding: 15px;
    font-size: 11px;
    border-bottom: 1px solid #ddd;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
th {
    background-color: #333;
    color: white;
}
.button {
    background-color: #333;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
}

.container { 
    overflow-x: auto; 
}