/* custom.css */
body {
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin: 8px;
    /* Se eliminó la línea background-image */
}

h1, h2, h3 {
    color: #1d3557;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

#collapse-options {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.dash-spreadsheet-container,
.dash-table-container {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Estilos para el botón */
#stb-collapse-button {
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

/* Estilos para los enlaces */
.stb-link {
    display: block;
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    font-size: 18px;
}

.stb-link:hover {
    color: #007bff; /* Cambia de color al pasar el ratón */
}

/* Alinear el contenido en el centro */
.stb-container {
    text-align: center;
    padding: 10px;
}
/* ——— Agrega esto al final de custom.css ——— */
body {
    font-size: 15px;           /* ajusta solo si quieres cambiar tu tamaño actual */
}

.list-group-item {
    cursor: pointer;
}

.list-group-item.active,
.list-group-item.active:focus {
    background-color: #0d6efd;   /* azul Bootstrap primario */
    border-color:     #0d6efd;
}



