/* Panel onay penceresi — Linklerim ile aynı stil */
.overlay.overlay--shell-confirm {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(3px);
}

.overlay.overlay--shell-confirm[hidden] {
  display: none !important;
}

.shell-confirm-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: shell-confirm-in 0.22s ease;
}

@keyframes shell-confirm-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.shell-confirm-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

.shell-confirm-modal__close:hover {
  background: #e2e8f0;
  color: #334155;
}

.shell-confirm-modal__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
  background: #fff7ed;
}

.shell-confirm-modal__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text, #0f172a);
  letter-spacing: -0.02em;
}

.shell-confirm-modal__msg {
  margin: 0 0 14px;
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
}

.shell-confirm-modal__status {
  margin: 0 0 20px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.shell-confirm-modal__status--warn {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #78350f;
}

.shell-confirm-modal__status--credit {
  background: linear-gradient(90deg, #a78bfa, #7c3aed);
  color: #fff;
}

.shell-confirm-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.shell-confirm-modal__actions .btn {
  min-width: 130px;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 10px;
}

.shell-confirm-modal__actions .btn--outline {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #6b7280;
}

@media (max-width: 520px) {
  .shell-confirm-modal {
    padding: 22px 18px 20px;
  }

  .shell-confirm-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shell-confirm-modal__actions .btn {
    width: 100%;
  }
}
