.custom-btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 16px;
  color: #1a73e8;
  background-color: transparent;
  border: 1.5px solid #1a73e8;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  
}

.custom-btn:hover {
  background-color: #1a73e8;
  color: white;
}

.custom-btn .arrow {
  margin-left: 6px;
  font-size: 16px;
}

.loading-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-text {
  color: white;
  font-size: 20px;
}

.floating-buttons {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-button {
  width: 70px;
  height: 70px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background 0.3s;
  user-select: none;
}

.floating-button:hover {
  background-color: #0056b3;
}

.floating-button:active {
transform: scale(0.95);
}


@media (max-width: 768px) {
.floating-button {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 40px;
}
}



