/**
 * Giriş — site yasağı bilgi paneli (üye kartı içinde)
 */
.auth-site-ban-slot {
  width: 100%;
  margin-bottom: 12px;
}

.auth-site-ban-panel {
  width: 100%;
  margin: 0;
  padding: 0;
}

.auth-site-ban-panel.hidden {
  display: none !important;
}

.auth-site-ban-inner {
  padding: 18px 16px;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid rgba(220, 38, 38, 0.35);
  background: linear-gradient(160deg, rgba(254, 226, 226, 0.95), rgba(255, 255, 255, 0.98));
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.auth-site-ban-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.auth-site-ban-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #991b1b;
}

.auth-site-ban-lead,
.auth-site-ban-reason,
.auth-site-ban-expires {
  margin: 0 0 8px;
  font-size: 14px;
  color: #7f1d1d;
  line-height: 1.45;
}

.auth-site-ban-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 12px 0 8px;
}

.auth-site-ban-contact-btn {
  margin: 0;
}

.auth-site-ban-dismiss {
  margin-top: 4px;
}

body.theme-dark .auth-site-ban-inner {
  background: linear-gradient(160deg, rgba(127, 29, 29, 0.35), rgba(30, 41, 59, 0.95));
  border-color: rgba(248, 113, 113, 0.4);
}

body.theme-dark .auth-site-ban-title,
body.theme-dark .auth-site-ban-lead,
body.theme-dark .auth-site-ban-reason,
body.theme-dark .auth-site-ban-expires {
  color: #fecaca;
}

@media (max-width: 480px) {
  .auth-site-ban-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .auth-site-ban-contact .btn {
    width: 100%;
  }
}
