/* drag and drop */
#drag_n_drop_section {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-block: 100px;
}

#drag_n_drop {
	width: 300px;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	border: 4px dashed #757575;
	color: #757575;
	font-size: 1.5em;
	cursor: pointer;
	text-align: center;
	background-color: #232323;
	transition: all 0.2s ease;

	&:hover {
		border-color: var(--accent-color);
	}

	& > span {
		font-size: 1.5em;
		width: 80%;
		font-weight: bold;
	}

	&.drag-over {
		border-color: var(--accent-color);
		color: var(--accent-color);
	}
}

/* loading bar */
#loading-section {
	margin-bottom: 50px;
	visibility: hidden;
	transition: visibility 0.4s ease, opacity 0.2s ease;
	opacity: 0;
}

#loading-bar-bg {
	width: 100%;
	height: 16px;
	border-radius: 8px;
	background: #262626;
	margin-top: 10px;
}

#loading-bar-fill {
	height: 100%;
	border-radius: 8px;
	background: var(--accent-color);
	transition: width 0.2s ease;
}

#download-dependencies-wrapper {
	background-color: #333;
	border-radius: 14px;
	border: 4px solid #222;
	transition: all 0.2s ease;
}

#download-dependencies-wrapper:has( > input:checked) {
	border-color: var(--accent-color);
	background-color: rgba(from var(--accent-color) r g b / 0.15);
}

#download-dependencies-wrapper > label {
	display: block;
	padding: 10px;
	width: max-content;
	cursor: pointer;
}