/* Fundo do modal, escurecido e com transição */
#custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Quando modal estiver visível */
#custom-alert:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

/* Caixa branca centralizada com sombra e borda arredondada */
.alert-content {
  background-color: #222; /* Fundo escuro, para combinar com seu tema */
  color: #eee;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  max-width: 350px;
  width: 90%;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

/* Texto da mensagem */
#alert-message {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* Botão estilizado */
#alert-ok {
  color: white;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  border: 1px solid white;
  transition: 0.5s ease-in-out;
}

#alert-ok:hover {
  transform: translateY(10px);
  border: none;
}

/* Foco para acessibilidade */
#alert-ok:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}
