
.filter-wrapper { 
    display: none; 
}

.description { 
    display: none; 
}

.comment {
    padding: 20px;
    border: 1px solid #CCC;
}

.toggle-target {
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease;
}

.js-form-wrapper > .js-form-wrapper.open {
  max-height: 500px; /* içerik yüksekliğine göre ayarla ya da JS ile otomatik */
}

.tooltip {
  position: relative;
  cursor: help;
}

.tooltip::after,
.tooltip::before {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.tooltip::after {
  content: attr(data-tooltip);
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #015f00;
  color: #e6ffe6;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 0.85rem;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tooltip::before {
  content: '';
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #015f00;
}

.tooltip:hover::after,
.tooltip:hover::before {
  opacity: 1;
}