@import url('https://cdn.jsdelivr.net/npm/galmuri@latest/dist/galmuri.css');


.custom-alert-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex; justify-content: center; align-items: center;
  z-index: 9999;
}

.custom-alert-box {
  background: #fff;
  border: 1px solid #555;
  border-radius: 10px;
  width: 320px;
  max-width: 90%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  animation: fadeIn 0.25s ease;
  font-family: "Galmuri11", sans-serif;
}

.custom-alert-header {
  background: #B3BDB3;
  color: #333;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-alert-close {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.custom-alert-close:hover {
  color: #000;
}

.custom-alert-body {
  padding: 20px;
  text-align: center;
  color: #333;
  font-size: 15px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
