/* styles.css */
/*.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; /* Ocupa todo el ancho de la página 
    background-color: #333; /* Color de fondo 
    color: white; /* Color del texto 
    padding: 10px 20px; /* Espaciado interno 
    z-index: 1000; /* Asegura que quede sobre otros elementos 
    
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Sombra opcional 
}*/
@import url('https://fonts.googleapis.com/css?family=Poppins');

*{
    font-family: 'Poppins', sans-serif;
}

body {
    /* background-image: url('fondo_avocados_white.png');  */
    background: #F4F7FD!important;  
    margin: 0px;
    background-size: cover; /* Redimensionar la imagen para cubrir todo el contenedor */
    background-position: center; /* Centrar la imagen en el contenedor */ 
    margin-bottom: 70px; /* Ajusta este valor según la altura de tu footer */
}

/*#datosFiscalesModal .modal-dialog.modal-lg {
    width: 50%; /* Aumentar el ancho del modal si es necesario */
   /* max-width: none;  Eliminar el límite de ancho máximo predeterminado */
/*}

#datosFiscalesModal .modal-body {
    max-height: 70vh; /* Ajusta la altura máxima del modal según la altura de la ventana */
   /* overflow-y: auto; /* Permite el desplazamiento si el contenido es muy largo */
/*}*/


#btn-end {
    background-color: #28a745; /* Color del interior del botón */
    color: white; /* Color del texto */
    border: 2px solid #218838; /* Bordes más oscuros */
    border-radius: 5px; /* Bordes redondeados */
    width: 150%;
    margin-left: 20px;
    padding: 10px 20px; /* Tamaño interno del botón */
    font-size: 16px; /* Tamaño del texto */
    cursor: pointer; /* Indicador de clic */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
}

#btn-end:hover {
    background-color: #1f8035; /* Color más oscuro al hacer hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Sombra al hacer hover */
}


form {
  display: grid;
  gap: 10px;
}

.page-header { background: url(avocado-wallpapper.jpg)no-repeat; position: relative; background-size: cover; }
.page-caption { padding-top: 170px; padding-bottom: 174px; }
.page-title { font-size: 46px; line-height: 1; color: #fff; font-weight: 600; text-align: center; }

.card-section { position: relative; bottom: 60px;  }
.card-block { padding: 50px;  border-radius: calc(8px - 1px) calc(8px - 1px) 0 0}
.section-title { margin-bottom: 60px; }


.list-group1 {
    background-color: white; 
    transition: background-color 0.3s ease; 
}

.list-group1:hover {
    background-color: rgb(205, 213, 94); 
    transition: background-color 0.3s ease; /* Efecto suave */
}

.list-group1.highlighted {
    background-color:rgb(205, 213, 94);  /* Color al hacer clic */
   
    font-weight: bold;
}


.form-control{
    padding: .20rem .25rem;
}

.file-upload-container {
  display: grid; 
}

.logout-container {
    position: relative;
}

.logout-btn {
    position: absolute;
    top: 10px;
    right: 10px;
}

.container {
    padding-left: 12px;
    padding-right: 12px;
    margin-top: 30px;
    margin-bottom: 10px;
   
}

h3, h4, h5 {
    color: #FA7070; /* Verde */
}



p {
    color: #333; /* Texto oscuro */
}

#c1{
    border-radius: 20px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); background: #E9ECEF; padding-top:10px;
}

label {
    font-weight: bold;
    color: #343a40; /* Verde */
    margin-bottom: .03rem;
}



.enmarcado-index{
    background-color: #fff;

    padding: 30px;

    border-radius: 10px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.selected-file-label {
    color: blue;
}



.enmarcado-formulario {
    border: 1px solid rgba(0, 0, 0, 0.21); /* Ajusta el color y grosor del borde según tus preferencias */
    padding: 8px; /* Ajusta el espaciado interior del formulario según tus preferencias */
    border-radius: 5px; /* Ajusta la esquina redondeada según tus preferencias */

    margin-top: 100px;
}

.enmarcado-izquierdo{
    border-left:  .35rem solid rgb(227, 101, 29) /*   amarillo*/
}

.form-group {
    margin-bottom: .01rem;
}



@media screen and (max-width: 600px) {
  /* Estilos para pantallas pequeñas */
  .file-upload-container {
    grid-template-columns: 1fr;
}

.file-list {
    grid-template-columns: 1fr;
}
}





/* Estilo para las tarjetas CARD */


.card {
    margin-bottom: 10px;

    border-radius: 5px;

    overflow: hidden;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.11);
}



.card-opciones {
    background-color: #fff;

    margin-bottom: 10px;

    border-radius: 5px;

    overflow: hidden;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    border-top: 3px solid rgba(51, 153, 51, .03)
}



.status {
    position: absolute;

    top: 3px;

    right: 3px;

    padding: 2px 2px 4px 2px;

    border-radius: 6px;

    color: #fff;

    font-weight:normal;
}



/* Estilos para diferentes estados */
.status.pendiente {
    background-color: #ffc107;

    color: #333;
}



.status.revision {
    background-color: #007bff;

    color: #fff;
}



.status.aprobado {
    background-color: #FB8B24;

    color: #fff;
}



.status.Pago {
 background-color: #3AB0FF;

 color: #fff;
}



.status.confirmado {
    background-color: #3AB0FF;

    color: #fff;
}



.card-footer {
    padding: 0.35rem 0.25rem;
}



.card-footer small {
    color: #889;
}



.card .card-titulo {
    padding: .25rem .25rem;

    padding-bottom: .10rem;

    background-color: rgba(255, 245, 194, .05);

    border-top: 1px solid rgba(51, 153, 51, .03)
}



.card .card-body {
    padding: .15rem .50rem;
}
.card-subtitle {
    margin-top: .375rem;

    margin-bottom: 0;
}

.title-ben{
    background-color: rgb(56, 116,68); 
    color: white;
    font-weight: bold;
}

/* ---------Estilos para ventana modal dialog------------ */

.text-footer {
    color: #333333;
}
/* Estilos para ventana modal dialog */
/*.modalDialog {
    position: fixed;
    font-family: sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;

  
}

.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
  
}

.modalDialog > div {
   width: 400px;
    position: relative;
    margin: 5rem auto;
    padding: 15px;
    border-radius: 10px;
    background: #cccccc;
    background: linear-gradient(#f7f7f7, #cccccc);
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    font-size: 95%;
    
}*/

/* Para alinear a la derecha las columnas de contenido 
.modalDialog th:nth-child(1),
.modalDialog td:nth-child(1),
.modalDialog th:nth-child(2),
.modalDialog td:nth-child(2),
.modalDialog th:nth-child(4),
.modalDialog td:nth-child(4) {
    text-align: center;
}

.modalDialog th:nth-child(3),
.modalDialog td:nth-child(3),
.modalDialog th:nth-child(5),
.modalDialog td:nth-child(5) {
    text-align: left;
}*/

/* Para los iconos de cerrar o close */
.close {
    background: #333;
    color: #fff;
    line-height: 25px;
    position: absolute;
    right: 10px;
    top: 10px;
    text-align: center;
    width: 24px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: none !important;
    border-radius: 7%;
}

.close:hover {
    background: #00aaff;
}

.responsiva{
    max-height: 80%; /* Limita la altura del contenido */
    max-width: 90%; /* Limita el ancho */
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto; /* Permite scroll interno si el contenido es demasiado alto */
}


.enmarcado-formulario {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.btn-next,
.btn-previous {
    margin-top: 20px;
}


/*./*footer {    
   
    color: #333333; /* Color del texto */
    /*padding: 0 0; /* Espaciado interno en el footer */
    /*text-align: center; /* Centrar el contenido del footer */
    /*position: fixed; /* Fijar el footer en la parte inferior de la ventana */
    /*left: 0;
    /*bottom: 0;
   /* width: 100%;
}*/


.card .close {
    background: none;
    border: none;
    color: red;
    font-size: 20px;
}

.borde-rojo {
    border: 1px solid red !important; /* Establece el borde en rojo */
}