/* -----------------------------------
   Contenedor principal centrado
----------------------------------- */
.container {
    margin: 0 auto;
    padding: 20px;
}

/* -----------------------------------
   Menu styles
----------------------------------- */
.menu {
    display: flex;
    margin-bottom: 10px;
    gap: 6px;
    justify-content: flex-start;
    align-items: center;
}

.menu-item {
    background-color: #DFEEF8;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    height: 54px;
    width: 140px;
    line-height: 1.2em;
}

.menu-item.active {
    border-top: #77C577 5px solid;
}

.crear {
    margin-left: auto;
}

.crear-solicitud {
    background-color: #212529;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 240px;
    height: 50px
}
.menu .crear{
    width: 50% !important;
    margin: 0 !important;

}
#editarUsuarioForm,
#cambiarContraseñaForm {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

#editarUsuarioForm h2,
#cambiarContraseñaForm h2 {
    font-family: 'Amazing-Slab-Bold-trial';
    font-size: 45px;
    text-align: start;
    width: 100%;
    line-height: 1.2em;
}

#editarUsuarioForm .form-group,
#cambiarContraseñaForm .form-group {
    flex: 0 0 100%;
}
#editarUsuarioForm .form-group-3,
#cambiarContraseñaForm .form-group-3 {
    flex: 0 0 calc(33% - 20px);
}
.btn-guardar {
    text-transform: uppercase;
    font-size: 15px !important;
    min-height: 50px;
    background-color: #323e48 !important;
    width: auto !important;
    margin-left: auto;
}

.btn-guardar:hover {
    background: linear-gradient(90deg, rgba(119, 197, 119) 0%, rgba(154, 206, 243) 100%);
}
#solicitudesTab .solicitud-card{
    width: 100%;
    max-width: calc(100% / 3 - 10px);
}

@media(max-width: 1000px){
    #editarUsuarioForm .form-group-3,
    #cambiarContraseñaForm .form-group-3 {
        flex: 0 0 100%;
    }
    #editarUsuarioForm h2, 
    #cambiarContraseñaForm h2{
        font-size: 30px;
    }
    #solicitudesTab .solicitud-card{
        width: 100%;
        max-width: calc(100% / 2 - 8px) !important;
    }
    .header-info-revision > div{
        width: calc(100% / 2) !important;

    }
    .documento-item{
        display: revert !important;
    }
}

@media(max-width: 700px){
    #solicitudesTab .solicitud-card{
        width: 100%;
        max-width: calc(100% / 1 - 8px) !important;
    }
}
.medida-modal .modal{
    background: rgb(0 0 0 / 66%) !important;
}

/* -----------------------------------
   Estilos del formulario de usuario
----------------------------------- */
.form-usuario-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    justify-content: space-around;
}

.form-usuario-group>div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}



.form-usuario-group label {
    font-size: 14px;
    color: #555;
}

.form-usuario-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    height: 50px;
}


.form-usuario-nombre-completo {
    flex: 2;
}

.form-usuario-cedula,
.form-usuario-telefono{
    width: 23.5%;
}

.form-usuario-actions {
    text-align: right;
    margin-top: 20px;
}

.btn-usuario-guardar {
    background-color: #212529;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 60px;
    width: 180px;
    font-size: 16px;
    font-family: unset;
}


input#usuario-nombre {
    width: 96%;
}

input#usuario-correo {
    width: 520px;
}

input#usuario-placa {
    width: 534px;
}
/* -----------------------------------
   Estilos del formulario de contraseña
----------------------------------- */
.form-contraseña-group {
    display: flex;
    gap: 19px;
}

.form-contraseña-group input {
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    width: 354px;
}

.form-container,
.form-container-contraseña {
    display: none;
    margin-top: 20px;
    border-radius: 8px;
    width: auto;
    margin: 0 auto;
}

.form-container h2,
.form-container-contraseña h2 {
    margin-bottom: 20px;
    font-size: 40px;
    color: #323E48;
    text-align: left;
    position: relative;
    left: -13px;
}

.rechazadosContent h2,
.rechazadosContent h2{
    margin-bottom: 20px;
    font-size: 40px;
    color: #323E48;
    text-align: left;
    position: relative;
    left: -13px;
    font-family: inherit;
}

.form-contraseña-actions {
    text-align: right;
    margin-top: 20px;
}

.btn-contraseña-guardar {
    background-color: #212529;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Resto del CSS anterior sigue igual */
/* ... (incluir el resto del CSS del archivo original) */
/* -----------------------------------
   Modal Styles
----------------------------------- */
.solicitudesTab .solicitud-card{
    width: 100%;
    max-width: calc(100% / 3 - 8px) !important;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-header h2{
    font-family: 'Amazing-Slab-Bold-trial';
    font-size: 30px;
    padding: 0;
    text-align: left;
}

.modal-title{
    font-family: 'AvenirLTStd-Medium';
}
.mensaje-exito {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mensaje-exito h2 {
    font-family: 'AvenirLTStd-Black';
    font-size: 44px;
}
.mensaje-exito h4 {
    font-family: 'AvenirLTStd-Black';
    font-size: 26px;
    text-align: center;
}
.mensaje-exito p {
    text-align: center;
    font-size: 18px;
    font-family: 'AvenirLTStd-book';
    width: 60%;
    margin: auto;
    margin-top: 20px;
}
.btn-cerrar-modal {
    width: 170px;
    min-height: 60px;
    font-family: 'AvenirLTStd-Black';
    color: white;
    background: #323e48;
    border-radius: 8px;
    margin: auto;
    margin-top: 40px;
}
/* Modal content styles */
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 790px;
    height: 627px;
    border-radius: 8px;
}
.modal-items-container{
    gap: 15px !important;
}
.grupo-item.modal-item {
    width: calc(25% - 12px);
    margin: 0;
}
#modal-title{
    font-family: 'AvenirLTStd-Black';
}
/* Close button styles */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
}

/* Wizard steps styles */
.steps {
    max-width: 100% !important;
    margin: 0 auto 6px;
    width: 90%;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    padding: 11px;
    font-size: 15px;
    /* gap: 0px; */
    padding-top: 51px;
    color: #9A9A9A;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: #9ACEF3;
    color: white;
    border: #E1F2FF 4px solid;
}

/* Solicitud options styles */
.solicitudes-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    padding: 25px;
}

.solicitud-item {
    width: 144px;
    height: 164px;
    background-color: #E8EEF2;
    display: flex;
    margin: 10px;
    cursor: pointer;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.solicitud-item img {
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 10px;
}

.solicitud-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* Modal options styles */
.modal-options {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.modal-option {
    width: 100px;
    height: 100px;
    background-color: #f1f1f1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
}

.modal-option-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Modal actions styles */
.modal-actions {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    gap: 47%;
}
.documentos-info {
    padding: 15px;
}
.documentos-info #documentos-list{
    background-color: #fefefe;
    border-radius: 8px;
    padding: 0px;
    max-height: 259px;
    overflow-y: scroll;
    font-family: 'AvenirLTStd-book';
    font-size: 16px;
    line-height: 1.2em;
}
.custom-file-upload {
    background-color: #47525E;
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
}
.revision-info table tbody {
    background-color: #fefefe;
    border-radius: 8px;
    padding: 0px;
    max-height: 300px;
    overflow-y: scroll;
    font-family: 'AvenirLTStd-book';
    font-size: 16px;
    line-height: 1.2em;
}
.header-info-revision > div {
    width: calc(100% / 4);
    padding: 5px 6px;
    font-family: 'AvenirLTStd-Light';
    line-height: 1.2em;
}
.header-info-revision > div strong {
    color: #111519;
}
.banner-informativo-documento {
    padding: 15px;
    margin: 10px 0px 30px;
    background: linear-gradient(45deg, #bbe2bb, #cce6f8);
    border-radius: 10px;
}
.banner-informativo-documento p {
    text-align: center;
    font-size: 17px;
    font-family: 'AvenirLTStd-Black';
}
.custom-file-upload input[type="file"] {
    display: none;
}

.archivo-nombre {
    font-size: 14px;
    color: #555;
    font-style: italic;
}

.btn-modal-regresar,
.btn-modal-siguiente {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    width: 147px;
    height: 50px;
}

.btn-modal-regresar:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

h2 {
    text-align: center;
    font-weight: 800;
    padding: 15px;
    font-size: 25px;
    font-family: inherit;
}

.h4-modal {
    font-weight: 800;
    font-size: 18px;
    font-family: 'Manrope';
}

/* Estilos para la sección de documentos */


.documentos-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
}

.grupo-imagen-selected {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.documentos-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #323E48;
    margin: 0;
}

.documentos-list {
    background-color: #F8F9FA;
    border-radius: 8px;
    padding: 20px;
}


/* Estilo cuando se pasa el cursor sobre el item */
.solicitud-item:hover {
    background-color: white;
    box-shadow: 0px 3px 20px #A9ADAFA1;
}

.solicitud-item.selected {
    border: 3px solid #77C577;
    box-shadow: 0px 3px 20px #A9ADAFA1;
}


.solicitud-item.selected,
.grupo-item.selected {
    border: 2px solid #77C577;
    background-color: #ffffff;
}

.step.active {
    color: #9ACEF3;
    font-weight: bold;
}

/* Estilos para grupos, identicos a solicitudes */
.grupos-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    padding: 24px;
}

.grupo-item {
    width: 155px;
    height: 164px;
    background-color: #E8EEF2;
    display: flex;
    margin: 7px;
    cursor: pointer;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    flex-direction: column-reverse;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
}

.grupo-item img {
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 10px;
}

.solicitud-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: unset;
}

.grupo-item h4 {
    font-size: 15px;
    font-weight: 800;
    font-family: 'Manrope';
    margin-bottom: 5px;
}

.h4-modal-grupo {
    font-weight: 800;
    font-size: 18px;
    font-family: 'Manrope';
    /* text-align: center; */
}


button.btn-modal-regresar {
    background-color: #323E48;
}

/*mensaje de basio*/
.mensaje-vacio-solicitud {
    background: linear-gradient(to right, #77C577, #9ACEF3);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 2rem auto;
    width: 571px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 203px;
}


.mensaje-vacio {
    background: linear-gradient(to right, #77C577, #9ACEF3);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 2rem auto;
    width: 571px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    height: 138px;
}


.mensaje-vacio p {
    margin: 0;
    color: #333;
}

.crear-solicitud {
    background-color: #37474F;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: bold;
}

.crear-solicitud:hover {
    background-color: #263238;
}


.mensajes { 
    font-size: 40px;
    display: flex;
    position: relative;
    color: #323E48;
    font-family: unset;
}

p {
    font-size: 15px;
    color: #323E48;
    font-weight: 500;
}

/*mensaje de basio*/

.solicitud-header{
    gap: 20px;
}