/**
 * ========================================================================
 * ARCHIVO: nexus-core.css
 * PROYECTO: MOTELWEB.VIP
 * VERSIÓN: 1.0.0
 * FECHA DE PRODUCCIÓN: 2026-09-15
 * DESCRIPCIÓN: Botones de edición Nexus (btnEditar, btnAgregar).
 * ========================================================================
 */

.btn-editar-nexus {
    font-size: 14px;
    cursor: pointer;
    margin-right: 8px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 25px;
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: 0.2s;
}

.btn-editar-nexus:hover {
    background: #D4AF37;
    color: #000;
    transform: scale(1.1);
}

.btn-agregar-nexus {
    font-size: 14px;
    cursor: pointer;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    background: #27ae60;
    color: #fff;
    border: none;
    font-weight: bold;
    transition: 0.2s;
}

.btn-agregar-nexus i {
    margin-right: 8px;
}

.btn-agregar-nexus:hover {
    background: #2ecc71;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}