/* Action Buttons */
.vm-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    height: 48px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.action-btn svg {
    width: 18px;
    height: 18px;
}

.action-btn.primary {
    background: var(--blue);
    color: white;
}

.action-btn.primary:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Control Buttons */
.control-btn {
    height: 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.control-btn svg {
    width: 12px;
    height: 12px;
}

.control-btn.connect {
    background: var(--blue-light);
    color: var(--blue);
}

.control-btn.connect:hover {
    background: var(--blue);
    color: white;
}

.control-btn.secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.control-btn.secondary:hover {
    background: var(--bg-primary);
}

.control-btn.danger {
    background: var(--red-light);
    color: var(--red);
}

.control-btn.danger:hover {
    background: var(--red);
    color: white;
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}