/* whatsapp-menu.css */

.whatsapp-help-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #00b8c6;
  color: white;
  font-family: 'Poppins', sans-serif;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}

.whatsapp-header {
  padding: 15px;
  background-color: #0099a8;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
}

.whatsapp-body {
  padding: 15px;
  display: none;
  background-color: #00b8c6;
}

.options a {
  display: block;
  padding: 10px;
  margin-top: 10px;
  background-color: white;
  color: #00b8c6;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.options a:hover {
  background-color: #e0f7f9;
}

/* Mobil ortalama için */
@media (max-width: 600px) {
  .whatsapp-help-menu {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 20px;
  }
}
