/* /alan-adi özel override: uzun SLD bozmadan göster */

/* SaaS-style border üstü rozetler */
#dr-section .dr-row {
  position: relative;
  overflow: visible; /* global overflow:hidden rozetleri kesiyordu */
}
#dr-section .dr-top-badges {
  position: absolute;
  top: 0;
  right: 16px;
  left: auto;
  display: flex;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
  justify-content: flex-end;
  transform: translateY(-55%);
}
#dr-section .dr-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(226,232,240,.9);
  color: #0f172a;
  box-shadow: 0 8px 22px rgba(15,23,42,.10);
}
#dr-section .dr-top-badge--rec {
  border-color: rgba(37,99,235,.25);
  background: linear-gradient(90deg, rgba(37,99,235), rgba(124,58,237));
  color: #fff;
}
#dr-section .dr-top-badge--primary {
  border-color: rgba(245,158,11,.25);
  background: linear-gradient(90deg, rgba(245,158,11), rgba(251,191,36));
  color: #fff;
}

/* Varsayılan: sığmıyorsa satır kır (elips yok) */
#dr-section .dr-row-main { align-items: flex-start; padding-top: 14px; }
#dr-section .dr-domain { align-items: flex-start; min-width: 0; }
#dr-section .dr-sld {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  flex: 1 1 auto;
  min-width: 0;
}
#dr-section .dr-tld { white-space: nowrap; flex: 0 0 auto; }

/* JS "çok uzun" dediğinde: domain tek satır kalsın, aksiyonlar alta insin (scrollbar yok) */
#dr-section .dr-row.dr-row--long .dr-row-main {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
#dr-section .dr-row.dr-row--long .dr-info { width: 100%; }
#dr-section .dr-row.dr-row--long .dr-actions {
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
#dr-section .dr-row.dr-row--long .dr-action-wrap { flex-wrap: wrap; }

#dr-section .dr-row.dr-row--long .dr-domain.dr-domain--singleline {
  white-space: nowrap;
  justify-content: flex-start;
}
#dr-section .dr-row.dr-row--long .dr-domain.dr-domain--singleline .dr-sld,
#dr-section .dr-row.dr-row--long .dr-domain.dr-domain--singleline .dr-tld {
  white-space: nowrap;
}

/* Mobilde ".com" sağa kaçmasın: tek kelime gibi kalsın */
#dr-section .dr-domain.dr-domain--singleline {
  flex-wrap: nowrap !important;
  justify-content: flex-start;
}
#dr-section .dr-domain.dr-domain--singleline .dr-sld,
#dr-section .dr-domain.dr-domain--singleline .dr-tld {
  flex: 0 0 auto;
}

/* Mobilde alan adı "tek kelime" gibi kalsın (SLD solda, TLD sağa kaçmasın) */
@media (max-width: 580px) {
  #dr-section .dr-domain {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: baseline !important;
    gap: 0 !important;
    width: auto !important;
    max-width: 100%;
  }
  #dr-section .dr-sld,
  #dr-section .dr-tld {
    white-space: nowrap !important;
    flex: 0 0 auto !important;
  }
}

