/* styles.css */
body {
    background-image: url('fondo_avocados_white.png'); /* Ruta correcta a tu imagen de fondo */
    background-color: #077a3b!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 */
}

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

.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;
}



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



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



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 */
}

.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;
}

/* ---------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);
}

/* 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: right;
}

/* 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;
}



.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 */
}