.dab-floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #0073e6;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

.dab-floating-btn:hover {
  background: #005bb5;
  transform: scale(1.05);
}

.dab-floating-btn .dab-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .dab-floating-btn {
    bottom: 15px;
    right: 15px;
    padding: 10px 18px;
    font-size: 14px;
  }
}
