/* Yardım kutusunun tamamı */
.help-box {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 260px;
  background: #0fb0b6;
  color: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  display: none; /* JavaScript ile açılacak */
  z-index: 9999;
}

/* Başlık ve kapatma */
.help-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.help-header strong {
  font-size: 16px;
}

.help-header p {
  font-size: 14px;
  margin: 0;
}

.help-header .close-help {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* İçerik */
.help-content {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Butonlar */
.help-btn {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: white;
  color: #0fb0b6;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
  font-size: 14px;
}

.help-btn:hover {
  background: #e0e0e0;
}

/* Sabit buton (baloncuk) */
.help-toggle {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #0fb0b6;
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 22px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
}
