/* ============================
   Contenedor Principal
============================ */
.container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

/* ============================
   Seleccionar archivo
============================ */
.custom-file-upload {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--verde);
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    color: var(--azul);
    border-radius: var(--radius);
}
.custom-file-upload:hover {
    background-color: var(--verdehover);
}
.custom-file-upload input {
    display: none;
}




#botonProcesar:disabled {
    background-color: var(--verdehover) !important;
    border-color: var(--verdehover) !important;
    color: var(--azul)!important; 
    cursor: not-allowed;
}
  
#botonProcesar {
    transition: background 0.3s ease-in-out;
}