.input-mayusc {
    text-transform: uppercase;
}

.oculto {
    display: none;
}

.btn-remove-item {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

.btn-remove-item:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.boton {
    height: calc(2.5rem + 2px) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cambioxpantalla {
    margin-top: 0;
}

.text-info-small {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: justify;
}

.tablita {
    font-size: 0.875rem;
    color: #343a40;
}

.verdesito {
    color: #198754;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .cambioxpantalla {
        margin-top: 5px !important;
    }
    .table-responsive-custom th {
        font-size: 0.75rem;
    }
}

@media (min-width: 768px) {

    .cambioxpantalla {
        margin-top: -25px !important;
    }

}

@media screen and (max-width: 780px) {

    .lalala {
        margin-top: 10px !important;
    }
    
    .table-responsive-custom table {
        min-width: 650px;
        width: 100%;
    }

}

.espere {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    
    /* Propiedades del GIF */
    background-image: url('../img/loading.gif');
    background-repeat: no-repeat;
    background-position: 50% 50%; 
    
    /* ✨ PROPIEDAD CLAVE: Define el ancho y alto del GIF */
    background-size: 60px 60px;
    
    /* Propiedad del Fondo Semitransparente */
    background-color: rgba(240, 239, 239, 0.9);
}

.espere::after {
    content: "Procesando, espere un momento...";
    position: absolute;
    top: calc(50% + 40px); /* 50% + la mitad del alto del gif (30px) + espacio (10px) */
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #333;
    white-space: nowrap;
}