/* modal.css */

/* Overlay hitam semi-transparan */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kotak modal */
.modal-content {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  width: 400px;
  text-align: center;
  z-index: 9999;
  animation: fadeInModal 0.3s ease-out;
}

/* Judul dan teks */
.modal-content h2 {
  font-size: 1.5rem;
  color: #1a202c;
  margin-bottom: 8px;
}

.modal-content p {
  color: #4a5568;
  margin-bottom: 20px;
}

/* Tombol OK */
.modal-button {
  background-color: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.modal-button:hover {
  background-color: #1e40af;
}

/* Sembunyikan modal saat belum aktif */
.hidden {
  display: none;
}

/* Animasi */
@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
