.modal-dialog{
	width: 100% !important;
		}

        .modalAlertError {
            z-index: 10000000000 !important; /* Aumenta el valor según sea necesario */
        }
		

#loader-container {
    position: fixed; /* Fijo en toda la pantalla */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo ligeramente transparente */
    z-index: 1000; /* Asegurarse de que esté por encima de otros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 5px solid #f3f3f3; /* Color del borde exterior */
    border-top: 5px solid #3498db; /* Color del borde superior */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




.upload-form {
    text-align: center;
}

.upload-title {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.file-upload-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.file-upload-input {
    width: 100%;
    height: 50px;
    border: 2px dashed #007bff;
    border-radius: 5px;
    outline: none;
    padding: 10px;
    cursor: pointer;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.file-upload-label {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    display: block;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}



.image-preview {
    width: 100%;
    height: 300px; /* Ajusta según tus necesidades */
    border: 2px dashed #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    overflow: hidden; /* Asegura que la imagen no desborde el contenedor */
}

.image-preview__image {
    display: none; /* Oculta por defecto */
    width: auto; /* Ajusta la anchura automáticamente */
    max-height: 100%; /* Altura máxima para mantener dentro del contenedor */
}

.image-preview__default-text {
    display: none; /* Oculta por defecto */
}



.container {
    max-width: 800px; /* Ajusta según sea necesario */
    margin: auto;
    padding: 20px;
    background-color: #f8f9fa; /* Color de fondo suave */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Sombra ligera */
}

.text-center {
    text-align: center;
}

.section {
    margin-top: 20px;
}

.section-title {
    color: #007bff; /* Color del título de la sección */
    margin-bottom: 15px;
    text-align: left;
}

.detail-item {
    margin-bottom: 10px;
}

.detail-value {
    display: block; /* Hace que el valor aparezca en una nueva línea */
    font-weight: bold;
}

.user-image-preview {
    max-width: 100%; /* Asegura que la imagen no sobrepase el contenedor */
    height: auto;
    border-radius: 5px; /* Bordes redondeados para la imagen */
}




