body {
	font-family: Arial, sans-serif;
}

.alreadyencrypt {
	color: red;
	font-size: 20px;
	margin-bottom: 10px;
}

.passwordprompt {
	color: red;
	font-size: 16px;
	margin-bottom: 10px;
}

#front-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #FFAFBD, #ffc3a0);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

#input-box {
	padding: 10px;
	font-size: 16px;
	border: 1px solid #FFAFBD;
	border-radius: 25px;
	margin-bottom: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.input-box:focus {
	border-color: #FF8C94;
}

#close-button {
	background: linear-gradient(135deg, #B04E35, #B04E35);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-size: 16px;
}

#content-container {
	display: none;
}

