:root {
	--accent: #2563eb;
	--ok: #2ecc71;
	--err: #e74c3c;
}

* {
	box-sizing: border-box
}

body {
	font-family: system-ui, Segoe UI, Roboto, Arial;
	background: #f4f7fb;
	padding: 30px;
	color: #111;
	background: url('oeinsbg.jpg') no-repeat center center fixed;
	background-size: cover;
}

.container {
	max-width: 820px;
	margin: 0 auto;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(20, 30, 60, 0.06);
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(6px);
}

h1 {
	text-align: center;
	margin-top: 0
}

.dropzone {
	border: 2px dashed var(--accent);
	padding: 36px;
	text-align: center;
	border-radius: 10px;
	background: #f8fbff;
	cursor: pointer;
}

.dropzone.hover {
	background: #e9f2ff
}

.agb {
    display: block;
	text-align: center;
	margin: 12px 0
}

.agb-text {
    text-align: center;
}

.buttonWrapper {
	text-align: center;
}

button {
	background: var(--accent);
	color: #fff;
	border: 0;
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer
}

button:disabled {
	opacity: 0.5;
	cursor: not-allowed
}

.upload-list {
	margin-top: 16px
}

.file-row {
	padding: 10px;
	border: 1px solid #eef2f6;
	border-radius: 8px;
	margin-bottom: 10px;
	background: #fcfeff
}

.file-row .meta {
	font-size: 0.95rem;
	color: #333
}

.progress {
	width: 100%;
	background: #eee;
	border-radius: 6px;
	overflow: hidden;
	height: 26px;
	margin-top: 8px
}

.bar {
	height: 100%;
	width: 0%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, var(--accent), #1f6de8);
	color: #fff;
	transition: width 0.12s linear
}

.bar.ok {
	background: linear-gradient(90deg, var(--ok), #27ae60)
}

.bar.error {
	background: linear-gradient(90deg, var(--err), #c0392b)
}

.file-row .status {
	margin-top: 8px;
	font-size: 0.9rem;
	color: #444
}

.global-status {
	margin-top: 12px;
	color: #333;
	font-weight: 600
}

.error {
	color: var(--err)
}