/*Estilos que se usan en los modales*/
.hidden {
    display: none;
}

.tituloFormato {
    font-size: 22px;
    font-weight: bold;
}


/*FotoPerfil Modulo de Colaboradores*/
#fotoContenedor {
    width: 200px;
    height: 185px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#fotoContenedor.empty::before {
    content: 'Foto de Perfil';
    color: #999;
}

#fotoContenedor img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Cambiado */
}

#fotoContenedor.empty img {
    display: none;
}

#fotoPerfil {
    display: none;
}

.file-input-label {
    width: 200px;
    height: 35px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}


/*Campos number en Colaboradores u otra parte*/
/* Establecer estilos predeterminados para los input de tipo number deshabilitados */
input[type="number"]:disabled {
    border: 1px solid #ccc; /* Establecer borde predeterminado */
    color: rgba(0, 0, 0, 0.705); /* Establecer color de texto predeterminado */
}





