* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #555;
	color: #eee;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100dvh;
	font-family: Helvetica, Arial, sans-serif;
}

.modal_container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal_display {
	background-color: white;
	border-radius: 8px;
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid #e0e0e0;
}

.modal_header h2 {
	margin: 0;
	font-size: 1.5rem;
	color: #333;
}

.modal_close {
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #666;
	transition: color 0.3s;
}

.modal_close:hover {
	color: #000;
}

.modal_body {
	padding: 20px;
}

.modal_body pre {
	background-color: #f5f5f5;
	padding: 15px;
	border-radius: 4px;
	overflow-x: auto;
	font-family: 'Courier New', monospace;
	font-size: 14px;
	line-height: 1.5;
}

.modal_body p {
	margin: 0;
	color: #333;
	line-height: 1.6;
}

button {
	background-color: #1359b4;
	border: 0;
	border-radius: 4px;
	color: inherit;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	height: 40px;
	width: 300px;
	padding: 0 24px;
}