/* Modal */
/* Delete Confirmation Modal */
.delete-confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}

.delete-confirm-overlay.is-open {
  display: flex;
}

.delete-confirm-modal {
  width: min(92vw, 460px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #8b0000;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  padding: 16px;
}

.delete-confirm-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.delete-confirm-text {
  margin: 0;
  font-size: 0.9rem;
}

.delete-confirm-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}