body {
	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
	background: #121212;
	font-family: Arial;
	color: white
}

.logo-container {
	text-align: center;
	margin-top: 20px
}

h1 {
	font-size: 24px
}

.login-container {
	width: 400px;
	margin: 100px auto;
	text-align: center
}

#password-box {
	width: 350px;
	margin: 100px auto;
	text-align: center;
	background: rgba(255,255,255,0.1);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
	backdrop-filter: blur(10px);
	color: white
}

#password-box input {
	width: 80%;
	padding: 10px;
	border-radius: 8px;
	border: none;
	margin-bottom: 15px
}

#password-box button {
	padding: 10px 20px;
	border: none;
	border-radius: 8px;
	background: #00aaff;
	color: white;
	cursor: pointer
}

#password-box button:hover {
	background: #008ecc
}

#password-retour {
	margin-top: 10px;
	font-size: 14px;
	color: #ffdd57
}

.upload-container {
	width: 600px;
	margin: 100px auto;
	text-align: center
}

.drop-zone {
	border: 2px dashed #666;
	padding: 40px;
	border-radius: 10px;
	transition: 0.3s
}

.drop-zone:hover {
	border-color: #00aaff;
	background: #1c1c1c
}

#fileInput {
	display: none
}

button {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	background: #00aaff;
	color: white;
	cursor: pointer
}

button:hover {
	background: #008ecc
}

#progressContainer {
	margin-top: 25px;
	width: 100%;
	height: 8px;
	background: #333;
	border-radius: 10px;
	overflow: hidden
}

#progressBar {
	height: 100%;
	width: 0%;
	background: #00ff88
}

#retour {
	margin-top: 25px
}

.listing-container {
	text-align: center;
	margin-bottom: 30px
}

a {
	color: white
}

a:hover {
	text-decoration: none
}

table {
	margin: 0 auto;
	width: 50%;
	border-collapse: collapse;
	margin-top: 30px
}

th, td {
	padding: 8px 12px;
	border-bottom: 1px solid #555;
	text-align: center
}

th {
	background: #222
}

td:last-child {
	white-space: nowrap
}

tr:hover {
	background: #1c1c1c
}

#pagination {
	text-align: center;
	margin: 30px auto;
	width: 50%;
	display: block
}

.page-link, strong {
	margin: 3px;
	display: inline-block
}

.button {
	margin-right: 10px;
	padding: 10px 20px;
	background: #008ecc;
	border-radius: 4px;
	font-size: 14px;
	color: #ffffff;
	text-decoration: none
}

.button:hover {
	background: #00aaff
}

footer {
	width: 520px;
	margin: auto auto 20px;
	text-align: center;
	border: 2px dashed #666;
	padding: 40px;
	border-radius: 10px
}

.contact-container {
	width: 400px;
	margin: 100px auto;
	text-align: center
}