#processing-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #007bff;
	color: white;
	padding: 10px;
	box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#processing-details {
	overflow-x: auto;
	flex-grow: 1;
	margin-right: 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	animation: scrollText 1s linear infinite;
}

.status-button {
	background-color: var(--white);
	color: #007bff;
	border: none;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
}

.file-processing-badge {
	margin-left: 10px;
	padding: 2px 5px;
	background-color: var(--green);
	color: var(--white);
	border-radius: 50%;
	position: absolute;
	top: 12px;
	right: 0;
	height: 20px;
	line-height: 1;
}

#file-upload-loader {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	font-size: 16px;
}

.loader-spinner {
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top: 4px solid white;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	animation: spin 1s linear infinite;
	margin: 10px auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}