.usuarios-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.usuarios-header input[type="text"] {
    padding: 8px;
    width: 250px;
    border-radius: 4px;
    border: none;
}

.usuarios-header button {
    background-color: #7289da;
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.2s ease;
}

.usuarios-header button:hover {
    background-color: #3a5bd1;
}

.tabla-usuarios-wrapper {
    width: 100%;
}

#tabla-usuarios {
    width: 100%;
    border-collapse: collapse;
    background-color: #2c2f33;
    border-radius: 6px;
    overflow: hidden;
}

#tabla-usuarios th,
#tabla-usuarios td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
}

#tabla-usuarios th {
    background-color: #23272a;
}

#tabla-usuarios tr:nth-child(even) {
    background-color: #2c2f33;
}

#tabla-usuarios tr:hover {
    background-color: #3a3d41;
}

.acciones button {
    background-color: #7289da;
    color: white;
    border: none;
    padding: 6px 10px;
    margin-right: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.acciones button:hover {
    background-color: #5d6dec;
}

.acciones button.eliminar {
    background-color: #e74c3c;
}

.acciones button.eliminar:hover {
    background-color: #c0392b;
}

.alerta-exito {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    margin: 15px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    font-weight: bold;
}

/* Evita que parezca editable (pero sigue habilitado y se envía) */
select.solo-lectura { cursor: not-allowed; }

/* Popup Usuarios (solo aplica en este módulo) */
