.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: #181818;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 700px;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.hidden {
  display: none !important;
}
