.alert-container {
  display: none; /* Default disembunyikan */
  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: 1000;
}

/* Kotak alert */
.alert-box {
  background-color: #1C004A;
  color:#fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 300px;
}

.alert-box p {
  margin-bottom: 20px;
  font-size: 16px;
}

.alert-box button {
  padding: 10px 20px;
  background-color: #F80885;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.alert-box button:hover {
  background-color: #0056b3;
}