﻿/*.winView {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out; !* Añadimos la animación *!
    z-index: 10;
}
.winViewEstructura {
    width: 100%;
    height: 100%;
    background-color: #EBEBEB;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 3px;
    border-width:  1px;
    border-style: solid;
    border-color: black;
    transform: scale(0.98); !* Cambiamos el valor inicial de scale *!
    animation: scaleIn 0.3s ease-out forwards; !* Añadimos la animación *!
    
}*/

.winView {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto; /* Permitir desplazamiento vertical */
    overflow-x: hidden; /* Ocultar desplazamiento horizontal */
    z-index: 10;
}

.winViewEstructura {
    max-width: 90%; /* Limitar el tamaño máximo al 90% del ancho del navegador */
    max-height: 90%; /* Limitar el tamaño máximo al 90% de la altura del navegador */
    background-color: #EBEBEB;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 3px;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    animation: scaleIn 0.3s ease-out forwards; /* Animación de escala */
    overflow: auto; /* Permitir desplazamiento dentro de la ventana emergente */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.5) transparent;
}


.winViewCabecera {
    background-color: #D9D9D9;
    padding: 5px;
    border-bottom: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px 3px 0 0;
    font-family: 'Nunito-Regular', serif;
    font-size: 15px;
    text-align: left;
    color: black;
}
.winViewCabecera .close-button {
    height: 25px;
    width: 25px;
    cursor: pointer;
    font-size: 15px;
    outline: none;
    border-radius: 2px;
    border: 1px solid #757575;
}
.winViewCabecera .close-button span {
    display: block;
    line-height: 28px; /* Centrado verticalmente */
    text-align: center; /* Centrado horizontalmente */
}
.winViewContenido {
    width: 100%;
}
.winViewPie {
    border-top: 1px solid black;
    background-color: #D9D9D9;
}
@keyframes fadeIn { 
    from { 
        background: rgba(0, 0, 0, 0); 
    } 
    to { 
        background: rgba(0, 0, 0, 0.5); 
    } 
} 
@keyframes scaleIn { 
    from { 
        transform: scale(0.98); opacity: 0; 
    } /* Cambiamos el valor inicial de scale */ 
    to { 
        transform: scale(1); opacity: 1; 
    } 
}