﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\
for details on configuring this project to bundle and minify static web assets. */
.navbar-nav {
    gap: 4px;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.form-control:focus {
    border-color: #0077cc;
    box-shadow: 0 0 0 0.2rem #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn-link.nav-link:focus {
    outline: black auto 1px;
}

/*html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}*/

.container {
    max-width: 960px;
}

.pricing-header {
    max-width: 700px;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 0.9rem;
    line-height: inherit;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    height: 100vh;
    overflow: hidden;
}

.footer {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    line-height: 30px;
    text-align: center;
}

.watermark-solid {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: rgb(41 41 41 / 92%);
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    white-space: nowrap;
    z-index: -1;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), /* Capa más clara */ 2px 2px 0 rgba(0, 0, 0, 0.3), /* Sombra más oscura */ 3px 3px 0 rgba(0, 0, 0, 0.2); /* Segunda sombra más oscura */
}

.watermark-transparent {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*font-size: 6rem;*/
    color: rgb(12 39 67 /0.1);
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    white-space: nowrap;
    z-index: -1;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), /* Capa más clara */ 2px 2px 0 rgba(0, 0, 0, 0.3), /* Sombra más oscura */ 3px 3px 0 rgba(0, 0, 0, 0.2); /* Segunda sombra más oscura */
}

.logo-bg {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.small-logo {
    width: 80px;
    height: auto;
    border-radius: 10px;
}

.main-container {
    height: calc(100vh - 80px);
}

    .main-container main {
        height: 100%;
        overflow: auto;
        overflow-x: hidden;
    }

/*Views*/
.custom-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-item {
    transition: background-color 0.3s ease;
    /*border-radius: 10px;*/
}

    .nav-item:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .nav-item button {
        color: #bcbdd7;
    }

        .nav-item button:hover {
            color: black;
        }

    .nav-item.is-active {
        background-color: rgba(255, 255, 255, 0.3);
    }

.nav-link:focus {
    color: black;
    box-shadow: 0 0 0 .25rem #fffefe29;
    /*border-radius: 10px;*/
}

.btn.nav-link, .btn.nav-link:focus {
    color: #bcbdd7;
}

.navbar-toggler {
    border-color: white;
    margin-right: 1rem;
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="white" viewBox="0 0 30 30"><path stroke="white" stroke-width="3" d="M2 7h26M2 15h26M2 23h26"/></svg>');
}


.navbar-brand {
    margin-left: 1rem;
}

.fa-house:hover {
    color: #c5c5bf !important;
}

.navbar {
    background-color: rgb(41 41 41 / 92%) !important;
    backdrop-filter: blur(10px);
    /*border-radius: 10px;*/
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.menubar-wrapper {
    display: flex;
    position: relative;
    max-width: 191px;
    transition: all 0.3s ease;
}

.hidden-width {
    width: 0%;
}

.menubar-custom {
    background-color: rgb(0 0 0 / 70%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    overflow: auto;
    overflow-x: hidden;
    /*border-radius: 10px;*/
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

    .menubar-custom ul {
        margin: 1rem 0 1rem 0;
    }

    .menubar-custom.closed {
        transform: translateX(-115%);
    }

/* Estilo de la pestaña */
.menu-tab {
    position: absolute;
    z-index: 1000;
}

/* Estilo del botón */
.menu-button {
    color: #a59e90;
    background-color: #fbfbfb;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

    .menu-button.closed {
        transform: rotate(180deg);
    }

.bb-custom {
    border-bottom: solid 5px #a2a9af91;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.3);
}

thead.fixed-head tr {
    border: 0 !important;
}

.table-container {
    max-height: calc(100vh - 247px);
    overflow: hidden;
}

.container-filter-bar {
    display: flex;
}


.search-addon {
    color: #a2a9af91;
}

.fa-square-plus.custom-size {
    font-size: 2.7em;
}


.btn-plus-custom {
    padding-bottom: 0px;
    padding-top: 9px;
    color: #6c757d;
}

    .btn-plus-custom:hover {
        color: #5c636a;
    }

    .btn-plus-custom:active {
        border-color: transparent !important;
    }



#contentArea {
    overflow: auto;
    overflow-x: hidden;
}

#contentArea {
    transition: all 0.3s ease;
}

.input-search-custom {
    border: none;
    box-shadow: none;
    font-size: 27px;
    padding-left: 10px;
}

    .input-search-custom:focus {
        border: none;
        box-shadow: none;
    }

.container-button-custom {
    display: flex;
    padding: 0.4rem 0.1rem;
}

.form-select.form-select-sm {
    height: 2rem;
}

.input-group-text {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-right: 5px;
    /*font-size: 30px;*/
    line-height: 1;
}

.dt-layout-full {
    /*overflow-x: hidden;*/
    overflow-y: auto;
    max-height: calc(100vh - 345px);
}

    .dt-layout-full.subtable {
        /*overflow-x: hidden;*/
        overflow-y: auto;
        max-height: calc(100vh - 452px);
    }

div.row.mt-2.justify-content-between {
    /* padding-left: .25rem;
    padding-right: .25rem;*/
    padding-left: .5rem;
    padding-right: .7rem;
}


div.dtsb-searchBuilder {
    margin-bottom: 0px;
    width: auto;
}

.dtsb-add.dtsb-button {
    box-shadow: none;
    /*font-seze: 1.85em;*/
}

.dtsb-group {
    margin-left: .25em
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100; /* Ajusta el valor del z-index */
}

/* Modal */
/*.modal {
    position: fixed;
    z-index: 9999;*/ /* Asegúrate de que el z-index del modal sea mayor */
/*}*/

#searchBuilderModal .modal-dialog {
    --bs-modal-width: 50%; /* Sobrescribe el ancho del modal al 80% */
}

.modal-dialog.custom-width {
    max-width: max-content !important;
}

.grid-container {
    display: grid; /* Activa CSS Grid */
    grid-template-columns: repeat(2, minmax(250px, 1fr)); /* 3 columnas como mínimo, adaptándose a pantallas más grandes */
    row-gap: 0px; /*Espacio entre las filas */
    column-gap: 30px; /* Espacio entre las columnas */
    justify-content: space-around;
    /*gap:30px;*/ /* Espacio entre los elementos */
}

.grid-container3C {
    display: grid; /* Activa CSS Grid */
    grid-template-columns: repeat(3, minmax(250px, 1fr)); /* 3 columnas como mínimo, adaptándose a pantallas más grandes */
    row-gap: 0px; /*Espacio entre las filas */
    column-gap: 30px; /* Espacio entre las columnas */
    justify-content: space-around;
    /*gap:30px;*/ /* Espacio entre los elementos */
}

.grid-container2C {
    display: grid; /* Activa CSS Grid */
    grid-template-columns: repeat(2, minmax(250px, 1fr)); /* 3 columnas como mínimo, adaptándose a pantallas más grandes */
    row-gap: 0px; /*Espacio entre las filas */
    column-gap: 30px; /* Espacio entre las columnas */
    justify-content: space-around;
    /*gap:30px;*/ /* Espacio entre los elementos */
    width: fit-content; /* Ajusta el tamaño del contenedor al contenido */
}

.grid-container2 {
    display: grid; /* Activa CSS Grid */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* 3 columnas como mínimo, adaptándose a pantallas más grandes */
    row-gap: 0px; /*Espacio entre las filas */
    column-gap: 30px; /* Espacio entre las columnas */
    justify-content: space-around;
}

.sub-grid-container {
    display: grid; /* Activa CSS Grid */
    /*grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));*/ /* 3 columnas como mínimo, adaptándose a pantallas más grandes */
    /*row-gap: 0px;*/ /* Espacio entre las filas */
    /*column-gap: 30px;*/ /* Espacio entre las columnas */
}

:root {
    --pantone-661u: #466bb3;
    --pantone-286u: #2c4e9d;
    --pantone-294c: #1c3564;
}

/* Ejemplo de uso */
.situateClaro {
    color: var(--pantone-661u) !important;
}

.situateMedio {
    color: var(--pantone-286u) !important;
}

.situateOscuro {
    color: var(--pantone-294c) !important;
}

.situateBClaro {
    background-color: var(--pantone-661u) !important;
}

.situateBMedio {
    background-color: var(--pantone-286u) !important;
}

.situateBOscuro {
    background-color: var(--pantone-294c) !important;
}

.situateBBClaro {
    border-bottom: solid 5px var(--pantone-661u) !important;
}

.situateBBMedio {
    border-bottom: solid 5px var(--pantone-286u) !important;
}

.situateBBOscuro {
    border-bottom: solid 5px var(--pantone-294c) !important;
}

.recuadro-sidebar {
    height: 100px; /* Altura fija del recuadro */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/ /* Sombra para un efecto visual */
}

.active > .page-link, .page-link.active {
    background-color: var(--pantone-661u) !important;
}


.recuadro-sidebar.selected .btn.nav-link {
    /*border: 3px solid #bcbdd7;*/ /* Color gris claro */
    border-radius: 8px; /* Bordes redondeados */
    /*background-color: #f9f9f9;*/ /* Fondo suave opcional */
    box-shadow: 0 0 0 .25rem #fffefe29;
}

.recuadro-sidebar.selected {
    position: relative; /* Necesario para que el pseudo-elemento se posicione respecto al contenedor */
}

    .recuadro-sidebar.selected .btn.nav-link::after {
        content: '❮'; /* Este es el carácter de la flecha */
        /*font-size: 24px;*/ /* Ajusta el tamaño de la flecha */
        color: #fff; /* Color de la flecha ##fffefe29*/
        position: absolute;
        right: -17px; /* Espacio fuera del recuadro, 10px sería dentro */
        top: 50%;
        transform: translateY(-50%); /* Alinea verticalmente la flecha */
        pointer-events: none; /* Evita que la flecha interfiera con los eventos */
    }

/*.main-container:has(main.px-2 .custom-wrapper.login) {
    background-image: url("/files/login/login.png");
    background-size: cover;
    background-repeat: no-repeat;*/
/**/

/*-------------------------Estilo Login-------------------------*/

section {
    display: flex;
    /*flex-wrap: wrap;*/ /* Permite que los divs se apilen si la pantalla es muy pequeña */
    gap: 140px; /* Espacio entre los divs */
    /*margin-top: 30px;*/
}

.dataleft {
    background-color: white;
    border-radius: 30px;
    margin-top: 14vh;
    /*flex: 1;*/ /* Esto hará que el div ocupe el espacio disponible proporcionalmente */
    height: 340px;
    width: 350px;
    padding: 10px;
}

.dataright {
    background-color: white;
    flex: 2; /* Puedes ajustar el tamaño relativo de los divs, este será el doble de ancho que el otro */
    border-radius: 30px;
    margin-top: 4vh;
    width: 350px;
    height: 480px;
}

.fake-header th {
    text-align: center !important;
    position:relative;
}

    .fake-header th[colspan="4"]::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 2px;
        background-color: #466bb3;
    }

@media (max-width: 600px) {
    section {
        flex-direction: column; /* En pantallas pequeñas, los divs se apilan uno sobre el otro */
    }
}


@media (max-width: 992px) {
    .dataleft {
        margin-top: 5vh;
    }

    .dataright {
        margin-top: 5vh;
    }
}

.dataleft img {
    width: 80%;
    height: auto;
    margin: 40px 0px 20px 0px;
}

.dataCloud {
    font-family: Broadway;
    font-size: 40px;
    font-weight: bold;
    color: #10406F;
}

.login {
    font-family: Franklin Gothic Heavy;
    /*font-size: 10px;*/
    font-weight: normal;
    color: #10406F;
}



main:has(.custom-wrapper.login) {
    background-image: url("/files/login/login.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    width: 100%;
    background-attachment: fixed;
}


.box {
    box-shadow: inset 0 0 0 2px rgb(255,255,255), 0.3em 0.3em 1em rgba(0,0,0,0.3);
}

.heaven {
    position: relative; /* Necesario para el posicionamiento absoluto de la imagen */
    height: 500px;
    width: 350px;
    z-index: 1;
}

.eye {
    position: absolute; /* Permite posicionar la imagen de forma absoluta */
    bottom: 30px; /* Ajusta el valor para moverla hacia arriba o abajo */
    right: -30px; /* Ajusta el valor para moverla hacia la izquierda o derecha */
    width: 200px; /* Ajusta el tamaño de la imagen si es necesario */
    height: auto; /* Mantiene la proporción de la imagen */
    z-index: 1; /* Asegura que la imagen esté por encima de otros elementos si es necesario */
}



.custom-wrapper login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Para centrar verticalmente toda la página */

.custom-wrapper .dataright {
    width: 100%; /* Asegura que el ancho sea el correcto dentro del contenedor */
    max-width: 400px; /*Controla el ancho máximo del formulario */
    margin: 0 auto; /* Centra horizontalmente el formulario*/
    background-color: #fff; /* Añade color de fondo si es necesario */
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /*Añade una sombra sutil para darle relieve */
    border-radius: 8px; /*Bordes redondeados */
}

.custom-wrapper .dataleft {
    margin-right: 20px;
    Espacio entre el logo y el formulario
}

.box {
    display: inline-block;
    vertical-align: top;
    box-shadow: inset 0 0 0 2px rgb(255,255,255), 0.3em 0.3em 1em rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .custom-wrapper .justify-content-around {
        display: flex;
        justify-content: space-around; /* Espacio entre los elementos de la izquierda y la derecha */
        align-items: center;
        width: 100%;
    }
}



.poRelative {
    position: relative;
    left: 0;
    top: 0;
}


.focus-indicator {
    outline: none;
    box-shadow: inset 0 0 5px red !important;
}

/*.arrow-container {
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
}

.material-icons {
    font-size: 30px;
    color: #000;
}*/

.input-field {
    margin-top: 0.5rem !important;
    margin-bottom: 0.7rem !important;
}

    .input-field input:not(.font12) {
        /*font-size: 10px !important;*/
        height: 2rem !important;
    }

/*    .input-field > label {
        font-size: 100% !important;
    }*/

.font12 {
    /*font-size: 14px !important;*/
    height: 2rem !important;
    font-weight: 500;
}

.offcanvas {
    width: 90vw !important;
}

.offcanvas-header {
    justify-content: space-between;
}

    .offcanvas-header .btn-close {
        margin: 0px;
    }

.offcanvas-body {
    padding-top: 0px;
}

.p-container-offcanvas {
    /*display: flex;*/
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.s1-container-offcanvas {
    flex: 0 0 35%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    /*  display: grid;
    grid-template-columns: 80% 20%;
    font-size: 10px;*/
}

    .s1-container-offcanvas form {
        width: 100%;
        overflow: hidden-x;
        overflow-y: auto;
        display: grid;
        grid-template-columns: 80% 20%;
        /*font-size: 10px;*/
        height: 100%;
    }

.s2-container-offcanvas {
    flex: 0 0 65%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    /*font-size: 10px;*/
}

    .s2-container-offcanvas form {
        flex: 0 0 60%;
        width: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

.btn-offcanvas {
    position: absolute;
    right: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    row-gap: 0px; /* Espacio entre las filas */
    column-gap: 20px; /* Espacio entre las columnas */
    padding: 10px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

#offcanvasRight .input-field input[type="text"] {
    position: relative;
    z-index: 1;
}

#offcanvasRight .input-field input[type="number"] {
    position: relative;
    z-index: 1;
}

.dropdown-content {
    position: fixed !important;
}

    .dropdown-content li {
        min-height: 25px !important;
    }

        .dropdown-content li > a, .dropdown-content li > span {
            /*font-size: 10px !important;*/
            padding: 5px 12px !important;
            line-height: 10px !important;
        }

ul.dropdown-content.select-dropdown {
    max-height: 300px;
    width: 200px !important;
}

.helper-text {
    /*font-size: 9px !important;*/
}

fieldset, legend {
    all: revert;
}

.reset {
    all: revert;
    /*color: #8d8d8d;*/
    /*font-size: 12px;*/
}

/*.select-wrapper {
    margin-bottom: 1rem !important;
}*/

.file-path-wrapper {
    padding-left: 0px !important;
}

/*.dropdown-search {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    font-size: 14px;
    margin-bottom: 5px;
}*/


/*.delete-button {
    position: absolute;
    background-color: darkred;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 100;
    top: -28px;
    left: 0px;
}
.disable-button {
    position: absolute;
    background-color: darkorange;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 100;
    top: -28px;
    left: 0px;
}

.hoverable:hover .delete-button {
    display: block;
}
.hoverable:hover .disable-button {
    display: block;
}


.delete-button {
    display: none;
}
.disable-button {
    display: none;
}*/

.active-edit {
    opacity: 1 !important;
}

.container-button-custom button:disabled {
    opacity: 0.3;
}

span.select-info {
    display: none;
}

.custom-opacity {
    opacity: 0.3;
}


.opacity-50{
    opacity: 0.3;
}


/*ALERTA FLOTANTE*/

/* Estilos para la alerta flotante centrada */
.custom-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centra el div horizontal y verticalmente */
    z-index: 9999; /* Asegura que el mensaje esté por encima de todo */
    min-width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    /* Opcional: Efecto de animación cuando el div aparece y desaparece */
    .custom-alert.show {
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }

    .custom-alert.fade {
        opacity: 0;
    }


/*    Cuadrar los dibujos del sidebar*/

.recuadro-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    row-gap: .25rem;
}

.menu-item-image {
    width: 88px; /* Tamaño ajustado de la imagen */
    height: 60px;
    object-fit: cover; /* Asegura que la imagen cubra el área del contenedor sin distorsionarse */
    border-radius: 50%; /* Hace que la imagen sea redonda */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra sutil para darle profundidad */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .menu-item-image:hover {
        transform: scale(1.1); /* Aumenta el tamaño de la imagen al pasar el mouse */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Sombra más fuerte cuando se hace hover */
    }


.menu-item-icon {
    /*font-size: 40px;*/ /* Asegura que el ícono tenga un tamaño adecuado */
    color: #333; /* Ajusta el color del ícono */
    /*margin-bottom: 5px;*/
}

.btn.nav-link:hover {
    background-color: #e9ecef; /* Fondo más oscuro al pasar el mouse sobre el botón */
}

/*.custom-switch-button {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}*/

.custom-switch-button input {
    height: 1.0em;
    width: 2em !important;
}

.popover-body {
    overflow: auto;
    max-height: 350px;
    min-width: 250px;
    max-width: 250px;
}

.font10 {
    /*font-size: 10px;*/
}

.container-date-list {
    display: flex;
    justify-content: space-between;
}

    .container-date-list input {
        max-width: 80%;
    }

    .container-date-list button {
        height: 34px;
    }

.center-weight {
    text-align: center;
    font-weight: 700;
}



/* Estilo para el botón personalizado */
.btn-excel-custom {
    background-color: #4CAF50; /* Color de fondo personalizado (puedes cambiarlo) */
    color: white; /* Color de texto (en este caso blanco) */
    border: none; /* Sin borde */
    /*padding: 10px 20px;*/ /* Espaciado interno */
    border-radius: 5px; /* Bordes redondeados */
}

    .btn-excel-custom i {
        margin-right: 5px; /* Espaciado entre el icono y el texto */
    }


/* Contenedor del spinner centrado en la pantalla */
.spinner-container {
    display: flex;
    align-items: center; /* Alinea verticalmente */
    justify-content: center; /* Centra horizontalmente */
    position: fixed; /* Fija el spinner en la pantalla */
    top: 50%; /* 50% desde la parte superior de la pantalla */
    left: 50%; /* 50% desde el lado izquierdo de la pantalla */
    transform: translate(-50%, -50%); /* Ajusta para que el centro del spinner esté en el centro de la pantalla */
    z-index: 9999; /* Asegura que el spinner esté encima de otros elementos */
}

.spinner-container-big {
    display: flex;
    align-items: center; /* Alinea verticalmente */
    justify-content: center; /* Centra horizontalmente */
    height: 100%;
}

.custom-spinner {
    --bs-spinner-width: 15rem;
    --bs-spinner-height: 15rem;
    --bs-spinner-border-width: 1em;
    color: #466bb3 !important;
}

/* Estilo para el spinner (círculo giratorio) */
.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    margin-right: 10px; /* Espacio entre el spinner y el texto */
}

/* Animación de giro */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Estilo para el texto */
.loading-text {
    /*font-size: 16px;*/
    color: #3498db;
}



#contentAreaIndex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #ffffff; /* Fondo blanco limpio */
    /* border: 2px solid #d1d1d1; /* Marco más definido */ */ border-radius: 16px; /* Bordes redondeados más notables */
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Sombra más marcada */ */ padding: 20px; /* Espaciado interno */
}

    #contentAreaIndex img {
        max-width: 90%; /* Evita que ocupe todo el contenedor */
        max-height: 90%;
        object-fit: contain;
        border: 3px solid #ececec; /* Marquito interno alrededor de la imagen */
        border-radius: 12px; /* Bordes redondeados para la imagen */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra ligera para la imagen */
    }


label {
    font-size: 16px !important;
}

html {
    font-size: 110% !important;
}


.nav-tabs .nav-link {
    font-weight: bold;
}


input[type="file"] {
    /*position: relative;*/ /* O absolute */
    z-index: 2; /* Número alto para superponer */
}

.situateBVerde {
    background-color: #36991f !important;
}

/* Estilo para truncar el texto con puntos suspensivos */
table.dataTable td.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px; /* Ajusta el ancho máximo según sea necesario */
}

    /* Estilo para mostrar el tooltip */
    table.dataTable td.ellipsis:hover {
        overflow: visible;
        text-overflow: unset;
        white-space: normal;
        word-break: break-word;
    }
