#custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: min(320px, 90vw);
  background: #1e252b;
  border: var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.modal-actions .btn-action {
  flex: 1;
  padding: 9px 10px;
}
