.fc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-modal-dialog {
  background: #fff;
  border-radius: 6px;
  padding: 1.75rem 2rem;
  max-width: 460px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
@media (max-width: 575.98px) {
  .fc-modal-dialog {
    padding: 1.25rem;
  }
}

.fc-modal-body {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #333;
}

.fc-modal-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
