body {
    background-color:bisque; 
}

.navbar {
    min-height: 50px; /* Puedes ajustar este valor según necesites */
    padding: 5px 10px;
}

/* Reducir el tamaño de la fuente del navbar */
.navbar-link {
    font-size: 14px; /* Ajusta el tamaño de la fuente */
    padding: 5px 10px;
}

/* Reducir el tamaño del logo */
.navbar-item svg {
    width: 200px; /* Ajusta el tamaño según necesites */
    height: auto;
}

/* Opcional: Reducir el padding del navbar-item que contiene el logo */
.navbar-item {
    padding: 5px 10px;
}
h1 {
    text-align: center;
    font-size: 3rem; /* Ajusta el tamaño de la fuente */
    font-weight: bold;
    margin-bottom: 20px;
}
.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

/* Ajustes adicionales para la tabla */
.table {
    width: 50%; /* Ajusta el ancho según necesites */
    max-width: 600px;
    text-align: center;
}