body {
	background-color: #0a0a0a;
	color: #00ff00;
	font-family: 'Orbitron', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.container {
	text-align: center;
	background-color: #1a1a1a;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

input[type='text'] {
	width: 80%;
	padding: 0.5rem;
	margin-bottom: 1rem;
	border: 2px solid #00ff00;
	border-radius: 5px;
	background-color: #0a0a0a;
	color: #00ff00;
	font-size: 1rem;
}

button {
	padding: 0.5rem 1rem;
	border: none;
	border-radius: 5px;
	background-color: #00ff00;
	color: #0a0a0a;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: #00cc00;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	overflow: auto;
}

.modal-content {
	background-color: #1a1a1a;
	margin: 15% auto;
	padding: 20px;
	border: 2px solid #00ff00;
	border-radius: 10px;
	width: 80%;
	max-width: 500px;
	text-align: center;
	position: relative;
}

.close {
	color: #00ff00;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: #00cc00;
}

#modalMessage {
	font-size: 1.2rem;
	margin-top: 20px;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	overflow: auto;
}

.modal-content {
	background-color: #1a1a1a;
	margin: 15% auto;
	padding: 20px;
	border: 2px solid #00ff00;
	border-radius: 10px;
	width: 80%;
	max-width: 500px;
	text-align: center;
	position: relative;
	word-wrap: break-word; /* Ensures long text wraps to the next line */
	overflow-wrap: break-word; /* Handles breaking long words */
	overflow: hidden; /* Prevents content from overflowing */
}

.close {
	color: #00ff00;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.close:hover {
	color: #00cc00;
}

#modalMessage {
	font-size: 1.2rem;
	margin-top: 20px;
	white-space: pre-wrap; /* Preserves line breaks and wraps text */
	overflow-y: auto; /* Adds a scrollbar if content overflows vertically */
	max-height: 300px; /* Limits the height of the message area */
}
