/* ================= Shared Modal Components ================= */
/* The confirm-dialog used by lyrics-details, request, and myRequests.
   Page-specific modal chrome (.modal / .modal-content / headers / close
   buttons) intentionally stays in each page's stylesheet — only this
   identical confirm-dialog is shared here. */

.modal-confirm {
  max-width: 400px;
  text-align: center;
  padding: 40px 30px;
}

.confirm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(var(--danger-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-icon svg {
  color: var(--danger-color);
}

.modal-confirm h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.modal-confirm p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
}

.confirm-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.confirm-buttons button {
  flex: 1;
  max-width: 140px;
}
