.xyz-anchoCompleto .uk-modal-dialog{
    width: 100%;
}







.xyz-container{
    padding: 25px 50px 25px 50px;
    background: #F1F5F9;
    min-height: calc(100vh - 118px);
    box-sizing: border-box;
}
.xyz-container .xyz-encabezados{
    margin-top: 20px;
}
.xyz-container .xyz-encabezados .xyz-titulo1{
    color: #1e293b;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    display: flex;
}
.xyz-container .xyz-encabezados .xyz-titulo2{
    color: #64748b;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
    margin-top: 4px;
}



.xyz-footer{
    min-height: 56px;
    border-top: solid 1px #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    padding-left: 24px;
    box-sizing: border-box;
}
.xyz-footer > div{
    
}
.xyz-footer > div > span{
    line-height: 21px;
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
}










.xyz-enfasis1{
    color: var(--mi-colorenfasis1);
    font-weight: 600;
}
.xyz-enfasis2{
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 16px;
}
.xyz-titulo-modal1{
    color: #1e293b;
    font-size: 17px;
    margin: 0px;
}
.xyz-titulo-modal2{
    color: #fff;
    font-size: 17px;
    margin: 0px;
}
.xyz-caja-gen-table{
    background-color: #fff;
    border: none;
    border-radius: 1rem;
    padding: 0px;
    /*max-height: 600px;*/
    height: auto;
    /*overflow: auto;*/
    overflow: hidden;
    /*box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;*/
    box-shadow: rgba(37, 37, 37, 0.25) 0px 2px 4px;
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.xyz-caja-gen-table > div{
    
}
.xyz-caja-gen-table-contenedor{
    height: auto;
    max-height: 527px;
}
.xyz-table-general{
    width: 100%; /* Ancho de la tabla */
    border-collapse: collapse; /* Colapsar bordes de celdas */
}
.xyz-table-general > thead > tr{
    /*border-bottom: solid 1px #e2e8f0;*/
}
.xyz-table-general > thead > tr > th{
    position: sticky;
    top: 0;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #1e293b;
    padding: 8px 16px;
    height: 40px;
    background-color: #ffffff; /* o el color de fondo de tu tabla */
    /*z-index: 10;*/
    box-shadow: inset 0 -1px 0 #e5e7eb;
}
.xyz-table-general > tbody tr{
    transition: background-color 0.2s ease;
}
.xyz-table-general > tbody > tr:not(:last-child) {
    border-bottom: solid 1px #e2e8f0;
}
.xyz-table-general > tbody tr:nth-child(odd) {
    background-color: #f9fafb; /* un gris muy claro */
}
.xyz-table-general > tbody tr:hover {
    background-color: #f3f4f6; /* Hover más oscuro */
}
.xyz-table-general > tbody > tr > td{
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    color: #64748b;
    padding: 0px 16px;
    height: 45px;
}

/* Estilos para navegadores WebKit */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #C2C2C2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #B7B7B7;
}

/* Estilos para Firefox */
.elemento {
    scrollbar-width: thin;
    scrollbar-color: #09C transparent;
}

.xyz-btn-editar-tabla{
    color: #64748b;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    transition: all 0.4s;
}
.xyz-btn-editar-tabla:hover{
    color: #64748b;
    background: #E8EBEF;
}

.xyz-btn-general2{
    color: #fff;
    background-color: #364b7e;
    padding: 2px 10px;
    display: inline-block;
    text-decoration: none;
}

/* Estilos iniciales para el botón */
.xyz-btn-general {
  display: inline-block;
  padding: 2px 10px;
  color: #fff;
  text-decoration: none !important;
  font-size: 12px;
  /*font-family: Arial, sans-serif;*/
  background-color: #364b7e;
  /*border: 2px solid white;*/
  position: relative;
  transition: all 0.4s ease;
  /*overflow: hidden;*/
  cursor: pointer;
  border-radius: 5px;
}

/* Fondo negro transparente al hacer hover */
.xyz-btn-general::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: all 0.4s ease;
  opacity: 0; /* Inicialmente invisible */
  transition: opacity 0.4s ease; /* Efecto de transición suave en opacidad */
  border-radius: 5px;
}

/* Activar el fondo negro con hover */
.xyz-btn-general:hover::after {
  opacity: 1;
}

/* Cambiar el color del texto en hover */
.xyz-btn-general:hover {
  color: #fff;
}

/* Efecto clic interesante (rebote) */
.xyz-btn-general:active {
  transform: scale(0.95);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}















.z-etiquet-gray {
    padding: 4px 8px;
    background-color: #f1f5f9;
    color: #334155;
    border: solid 1px #cbd5e1;
    border-radius: 0.375rem;
}

.z-etiquet-red {
    padding: 4px 8px;
    background-color: #fef2f2;
    color: #c11e23;
    border: solid 1px #fcdada;
    border-radius: 0.375rem;
}

.z-etiquet-amber {
    padding: 4px 8px;
    background-color: #fffbeb;
    color: #92400e;
    border: solid 1px #fde68a;
    border-radius: 0.375rem;
}

.z-etiquet-green {
    padding: 4px 8px;
    background-color: #f0fdf4;
    color: #00a63e;
    border: solid 1px #c0ecd0;
    border-radius: 0.375rem;
}

.z-etiquet-blue {
    padding: 4px 8px;
    background-color: #eff6ff;
    color: #2563eb;
    border: solid 1px #bfdbfe;
    border-radius: 0.375rem;
}

.z-etiquet-indigo {
    padding: 4px 8px;
    background-color: #eef2ff;
    color: #6366f1;
    border: solid 1px #c7d2fe;
    border-radius: 0.375rem;
}

.z-etiquet-purple {
    padding: 4px 8px;
    background-color: #f5f3ff;
    color: #9333ea;
    border: solid 1px #ddd6fe;
    border-radius: 0.375rem;
}

.z-etiquet-pink {
    padding: 4px 8px;
    background-color: #fdf2f8;
    color: #db2777;
    border: solid 1px #fbcfe8;
    border-radius: 0.375rem;
}


.z-button {
    padding: 10px 20px;
    font-weight: bold;
    color: #fff;
    /*background: linear-gradient(to right, #5a34f0, #7f5df3);*/
    /*background: #6366F1;*/
    background: var(--mi-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    /*transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;*/
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    /*box-shadow: 0 4px 10px rgba(90, 52, 240, 0.2);*/
    outline: none;
}
.z-button:hover {
    /*background: linear-gradient(to right, #7f5df3, #5a34f0);*/
    /*background: #7a7cf0;*/
    background: var(--mi-colorhover);
    /*transform: scale(1.05);*/
    /*box-shadow: 0 6px 14px rgba(90, 52, 240, 0.3);*/
    color: #fff;
}
.z-button:focus {
    outline: 2px solid #a5b4fc;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.4);
    color: #fff;
}


.z-button-outline {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    color: #111827;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    outline: none;
}

.z-button-outline:hover {
    background-color: #f9fafb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.z-button-outline:focus {
    outline: 2px solid #c7d2fe;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}


.z-button-primary {
    padding: 10px 20px;
    font-weight: bold;
    color: #fff;
    /*background: linear-gradient(to right, #5a34f0, #7f5df3);*/
    background: #6366F1;
    /*border: none;*/
    border: 1px solid #6366F1;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    /*transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;*/
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    /*box-shadow: 0 4px 10px rgba(90, 52, 240, 0.2);*/
    outline: none;
}
.z-button-primary:hover {
    /*background: linear-gradient(to right, #7f5df3, #5a34f0);*/
    background: #7a7cf0;
    /*transform: scale(1.05);*/
    /*box-shadow: 0 6px 14px rgba(90, 52, 240, 0.3);*/
    color: #fff;
}
.z-button-primary:focus {
    outline: 2px solid #a5b4fc;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.4);
    color: #fff;
}



.z-button-s{
    padding: 2px 11px !important;
    font-size: 12px;
    line-height: 25px;
}



.z-padding-bottom-4{
    padding-bottom: 4px;
}

#mpago .uk-form-label{
    color: #101828;
    font-weight: 500;
}
#mpago .uk-input{
    color: #101828;
    font-size: 14px;
    font-family: 'inter',arial;
}
#mpago .uk-textarea{
    color: #101828;
    font-size: 14px;
    font-family: 'inter',arial;
}
#mpago .uk-input:focus{
    border-color: #6366f1;
    border-width: 2px;
}
#mpago .uk-textarea:focus{
    border-color: #6366f1;
    border-width: 2px;
}
#mpago .uk-search-input{
    color: #101828;
    font-size: 14px;
    font-family: 'inter',arial;
}
#mpago .uk-search-input:focus{
    border-color: #6366f1;
    border-width: 2px;
}
#mpago .uk-text-meta{
    font-size: 12px;
    font-weight: 400 !important;
    color: #6366f1 !important;
}
.z-encabezado-modal{
    padding: 12px 24px;
    text-align: center;
    background: #6366F1;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
    border-radius: 5px 5px 0px 0px;
}
.z-input {
    /*width: 100%;*/
    /*padding: 10px 14px;*/
    /*border: 1px solid #d1d5db; */
    /*border-radius: 8px;*/
    /*background-color: #fff;*/
    /*font-size: 14px;*/
    /*color: #111827;*/
    /*outline: none;*/
    /*transition: border-color 0.2s ease, box-shadow 0.2s ease;*/
}

.z-input:focus {
    /*border: 1.8px solid #6366f1;  púrpura en focus */
    /*box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25);  efecto suave alrededor */
            /*outline-width: 2px;outline-color: #6366f1;*/
}


.z-portadap1{
    padding-top: 70px;
    padding-bottom: 70px;
}
.z-titulop-1{
    font-weight: 700;
    font-size: 52px;
}
.z-enfasisp-1{
    color: var(--mi-color);
}
.z-parrafop-1{
    color: #333;
}
.z-buttonp-verde{
    background-color: var(--mi-color);
    border: 2px solid var(--mi-color);
    padding: 12px 30px;
    font-size: 15px;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none !important;
}
.z-buttonp-verde:hover{
    background-color: #05b284;
    border: 2px solid #05b284;
    color: #fff;
}
.z-buttonp-verdeoutline{
    border: 2px solid var(--mi-color);
    color: var(--mi-color);
    background: transparent;
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none !important;
}
.z-buttonp-verdeoutline:hover{
    background-color: #efefefc7;
    color: var(--mi-color);
}
.z-contenido-borde-right{
    border-right: solid 1px rgba(255,255,255,0.3);
}

@media screen and (max-width: 600px){
    .z-portadap1{
        padding-top: 60px;
        padding-bottom: 60px;
        
    }
    .z-titulop-1{
        font-size: 45px;
        text-align: center;
        line-height: 54px;
    }
    .z-parrafop-1{
        text-align: center;
    }
    .z-contenido-borde-right{
        border-right: solid 1px rgba(255,255,255,0);
    }
}