* {
    box-sizing: border-box;
}

h2 {
    text-align: center;
    margin-top: 150px; /* Ajusta este valor si necesitas más espacio */
    z-index: 1;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-x: auto;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

/* Estilos específicos para botones */
.button-container {
    text-align: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

    .button-container button {
        padding: 10px 20px;
        margin: 5px;
        background-color: #4CAF50;
        color: white;
        border: none;
        cursor: pointer;
    }

        .button-container button:hover {
            background-color: #45a049;
        }

    /* Estilos para el enlace */
    .button-container a {
        text-decoration: none;
        color: white;
    }

        .button-container a:hover {
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 768px) {
    .button-container button {
        width: 100%;
        margin: 10px 0;
    }
}
