/* Fondo oscuro */
.alert-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

/* Caja del alert */
.alert-box {
	background: white;
	padding: 30px;
	border-radius: 8px;
	width: 300px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	font-size:1em;
}

/* Botón */
.alert-button {
	background: #007bff;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	margin-top: 15px;
	font-size:1em;
	width: 100%;
}

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


body.dark .alert-box {
  background-color: #333;
  border-color: #555;
  color: #fff;
}