/* 📦 alert.css – Styles for custom alert modal */

.custom-alert {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.custom-alert.hidden {
  display: none;
}

.custom-alert-box {
  background-color: #222;
  color: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  width: 90%;
  max-width: 360px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  font-family: 'Comic Sans MS', 'Trebuchet MS', sans-serif;
  font-size: 18px;
}

.custom-alert-box p {
  margin-bottom: 20px;
  line-height: 1.4;
}

.custom-alert-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.custom-alert-buttons button {
  background-color: #ffcb05;
  color: #222;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-alert-buttons button:hover {
  background-color: #ffd940;
}

.custom-alert-buttons .hidden {
  display: none;
}
