/* === BOTONES DE ACCIÓN (Guardar, etc) === */
.button, .submit-row input {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}

.button:hover, .submit-row input:hover {
    transform: scale(1.03);
}

/* === BOTÓN DE AÑADIR EN MENÚ LATERAL === */
.addlink {
    background-color: #2563eb !important;
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 500;
    padding: 4px 10px;
    box-shadow: none;
}

.addlink:hover {
    background-color: #1d4ed8 !important;
    text-decoration: none;
}

/* === CAMPOS DE FORMULARIO === */
input, select, textarea {
    border: 1px solid #cbd5e1;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    transition: border 0.2s;
}

input:focus, select:focus, textarea:focus {
    border-color: #3b82f6;
    outline: none;
}

/* === TÍTULOS DE SECCIÓN === */
.module caption {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
