html {
    scroll-behavior: smooth;
}

#fullscreen-container.visible {
    visibility: visible;
    opacity: 1;
}

#fullscreen-container.invisible {
    visibility: hidden;
    opacity: 0;
}

.montagu-slab-uniquifier {
  font-family: "Montagu Slab", serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

/* modal konfirmasi */
.modal {
  display: none; /* Tersembunyi secara default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  width: 100%;
}

.modal-actions {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

.modal-actions button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-actions button:first-child {
  background-color: #4CAF50;
  color: white;
}

.modal-actions button:last-child {
  background-color: #f44336;
  color: white;
}
