#main {
	margin-top: 4rem;
	padding: 0;
	position: relative;
	display: grid;
	align-items: start;
	justify-content: center;
	color: white;
}
.container {
	margin: 4px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	max-width: 90vw;
	background: linear-gradient(45deg, #001f3f, #003f3f);
	padding: 8px 12px;
	border-radius: 0px 20px 0px 20px;
	border: solid 2px #00ffff;
}
.entry {
	width: 320px;
	margin: 4px;
	display: grid;
	place-items: center;
	background: linear-gradient(45deg, #3f3f3f, #5f5f5f);
	border: solid 2px #ffffff;
	padding: 12px;
	border-radius: 8px;
}
h1 {
	text-align: center;
	font-size: 1.8rem;
}
h3 {
	font-size: 1.2rem;
	margin: 4px 0 0 0;
	color: white;
}
hr {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, #AD7AD8, #AD7AD8, #FFFFFF, #FFFFFF, #6A853A, #6A853A);
	opacity: 0.75;
}
input {
	background-color: #000000;
	color: #303CBE;
	accent-color: #ff0000;
	padding: 4px 8px;
	font-size: 0.8rem;
	border-radius: 8px;
}
.format-category {
	position: absolute;
	color: #BF11D7;
	line-height: 2rem;
}
label {
	color: #FF76A3;
	line-height: 2rem;
}
button {
	margin-top: 8px;
	position: relative;
	left: 50%;
	transform: translate(-50%, 0px);
	padding: 10px 15px;
	border: none;
	background: linear-gradient(135deg, #003fbf, #007fff);
	color: #ffffff;
	border-radius: 5px;
	cursor: pointer;
}
button:hover {
	background: linear-gradient(135deg, #007fff, #00bfff);
}
#fileInfo {
	margin-top: 20px;
}
.preview {
	color: #007bff !important;
	text-decoration: none;
}
.preview:hover {
	color: #ff7fbf !important;
	text-decoration: underline;
}
.progress-container {
	width: 90%;
	height: 8px;
	background: linear-gradient(135deg, #000000, #001f3f);
	border-radius: 10px;
	position: relative;
	margin: 8px;
}
.progress-bar {
	height: 100%;
	background: linear-gradient(135deg, #7f7f7f, #bfbfbf);
	border-radius: 4px;
	position: absolute;
	width: 0%;
}
.progress-thumb {
	width: 12px;
	height: 12px;
	background-color: #ffffff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}
#submit {
	position: relative;
	width: 60%;
	display: none;
}
#submit .progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	border-radius: 5px;
	z-index: -1;
}
.time-input {
	font-size: 16px;
	display: inline-block;
	background: transparent;
	color: #7fffff;
	border: none;
	padding: 0;
	width: 60px;
	max-width: 128px;
	text-align: center;
}
.format-container {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 0;
	justify-content: center;
}