/* =======================
   CONTENEDOR GENERAL
========================== */
.main-content {
    width: 100vw;
    margin-left: 100px;
    margin-right: 100px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.custom-container {
    background-color: #e6e7e7;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #b6b6b6;
}

/* ======================0
    CONTENEDOR PAGINADO
========================= */

/* Contenedor general */
.custom-tab-container {
    background-color: #e6e7e7;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #b6b6b6;
    width: 100%;
    margin: auto;
}

/* Botones de las pestañas */
.custom-tabs {
    display: flex;
    border-bottom: 2px solid #b6b6b6;
}

.tab-button {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
}

.tab-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.tab-button.active {
    color: #007bff;
    border-bottom: 3px solid #007bff;
}

/* Contenido de las pestañas */
.custom-tab-content {
    background: #f0f0f0;
    border-radius: 3px;
    border: 1px solid #ccc;
    margin-top: 7.5px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/*BOXES contenedores de cajas*/

.custom-box {
    background: #f9f9f9; 
    border: 1px solid #ccc; 
    border-radius: 4px;
    padding: 10px;
}

.custom-box-header {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #ccc; 
    padding-bottom: 5px;
}

.custom-box-body {
    gap: 6px;
    padding: 10px;
    max-height: 200px; /* Ajusta la altura máxima según necesites */
    overflow-y: auto; /* Activa el scroll vertical cuando sea necesario */
    overflow-x: hidden; /* Evita que aparezca un scroll horizontal */
}


/* ==========================
    CONTENEDOR EXPANDIBLE
============================= */

.custom-expand-inactive {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 0;
}

.custom-expand-active {
    max-height: 2000px; /* Ajusta según el contenido */
    overflow: hidden;
    transition: max-height 0.3s ease-in;
    opacity: 1;
}

/* ===========================
   Bordes personalizados
=========================== */

/* BLACK */
.border-start-black { border-left: 4px solid black !important; }
.border-end-black   { border-right: 4px solid black !important; }
.border-top-black   { border-top: 4px solid black !important; }
.border-bottom-black{ border-bottom: 4px solid black !important; }

/* WHITE */
.border-start-white { border-left: 4px solid white !important; }
.border-end-white   { border-right: 4px solid white !important; }
.border-top-white   { border-top: 4px solid white !important; }
.border-bottom-white{ border-bottom: 4px solid white !important; }

/* BLUE */
.border-start-blue { border-left: 4px solid #007bff !important; }
.border-end-blue   { border-right: 4px solid #007bff !important; }
.border-top-blue   { border-top: 4px solid #007bff !important; }
.border-bottom-blue{ border-bottom: 4px solid #007bff !important; }

/* GREEN */
.border-start-green { border-left: 4px solid #28a745 !important; }
.border-end-green   { border-right: 4px solid #28a745 !important; }
.border-top-green   { border-top: 4px solid #28a745 !important; }
.border-bottom-green{ border-bottom: 4px solid #28a745 !important; }

.bordered {
    border: 1px solid #b6b6b6;
}



/* DIVS PEQUEÑOS */

.div-info {
    height: 65px;
    border: 1px solid #ccc;
    padding: 1rem;
}