/* ============================================================
   BACKEND - ESTILO ELEGANTE EN BLANCO Y NEGRO
   ============================================================ */

/* -----------------------------------------------------------
   1. INPUTS Y CAMPOS DE TEXTO
   Fondos neutros y bordes suaves, texto legible
   ----------------------------------------------------------- */

/* Input cuando está enfocado */
.o_input {
    background-color: #ffffff !important; /* Blanco puro */
    border-color: #424242 !important; /* Gris oscuro */
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2) !important;
    outline: none !important;
}

/* Inputs deshabilitados (solo lectura) */
.o_input:disabled {
    background-color: #e0e0e0 !important; /* Gris neutro */
    color: #9e9e9e !important;
    opacity: 0.8 !important;
}
