/* Premium Tooltip CSS - Tüm modüller için ortak */
.tooltip-container {
  display: inline-block;
  position: relative;
}
.tooltip-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #f0f4ff;
  color: #2d3a4a;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  margin-left: 6px;
  border: 1px solid #b3c6e0;
  transition: background 0.2s;
}
.tooltip-icon:hover, .tooltip-icon:focus {
  background: #e0eaff;
  outline: none;
}
.tooltip-box {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 9999;
  min-width: 320px;
  max-width: 400px;
  background: #fff;
  color: #222;
  border: 1px solid #b3c6e0;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
  padding: 16px 18px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.5;
  pointer-events: auto;
}
.tooltip-box.active {
  display: block;
  animation: fadeIn 0.18s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .tooltip-box {
    min-width: 220px;
    max-width: 95vw;
    font-size: 14px;
    padding: 12px 10px;
  }
} 