#alertModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25); /* lekkie przyciemnienie */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: system-ui, sans-serif;
}

.classic-modal-window {
  background: #f0f0f0;
  border: 1px solid #888;
  border-radius: 3px;
  width: 300px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  color: black;
}

.classic-modal-header {
  background: #e0e0e0;
  padding: 0.5rem;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  text-align: left;
  font-size: 14px;
}

.classic-modal-body {
  padding: 1rem;
  font-size: 13px;
  text-align: left;
}

.classic-modal-footer {
  padding: 0.5rem 1rem;
  text-align: right;
  border-top: 1px solid #ccc;
}


.modal-ok-button {
  all: unset; /* 🔥 Najważniejsze – zdejmuje WSZYSTKO */
  font-family: system-ui, sans-serif;
  font-size: 13px;
  padding: 4px 12px;
  border: 1px solid #999;
  background-color: #e0e0e0;
  color: black;
  cursor: pointer;
  border-radius: 2px;
  text-align: center;
  box-shadow: inset 0 0 1px #fff;
  display: inline-block;
}

.modal-ok-button:hover {
  background-color: #d0d0d0;
}


