body {
	font-family: 'Comic Sans MS', cursive, sans-serif;
	background-color: #ffe6cc;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.container {
	background-color: #ffffff;
	border-radius: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	width: 400px;
	padding: 40px 50px;
}

.entry-title {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	color: #e69900;
}

.error-msg {
	color: #ff0000;
	margin-bottom: 15px;
}

.label-wrapper {
	text-align: left;
	margin-bottom: 8px;
}

label {
	font-weight: bold;
	color: #555555;
	display: block;
}

select,
input[type="file"],
input[type="text"] {
	width: 100%;
	padding: 12px;
	margin: 10px 0;
	border: 1px solid #cccccc;
	border-radius: 8px;
	background-color: #f7f7f7;
	transition: border-color 0.3s;
	font-size: 16px;
	color: #333333;
	box-sizing: border-box;
	/* Add this property */
}

select:focus,
input[type="file"]:focus,
input[type="text"]:focus {
	border-color: #e69900;
	outline: none;
}

button {
	background-color: #e69900;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 14px 20px;
	margin-top: 15px;
	cursor: pointer;
	font-size: 18px;
	transition: background-color 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
	background-color: #cc8000;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(256, 256, 256, 0.8);
	/* Lighter overlay color */
	display: flex;
	/* Corrected display property */
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.loading-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #777777;
	/* Pale loading text color */
}

.loading-spinner {
	border: 4px solid rgba(255, 230, 204, 0.6);
	/* Pale spinner color */
	border-top: 4px solid #ffaa80;
	/* Slightly darker spinner color */
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin-bottom: 10px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.label-wrapper label,
.loading-text {
	color: #ffaa80;
	background-color: rgba(256, 256, 256);
	text-align: center;
}