body {
	background-color: #121212;
	color: #e0e0e0;
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 20px;
	position: relative;
	max-height: 100%;
	overflow-x: hidden;
}

/* Background image container */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('columbina.png') no-repeat center center / cover;
	opacity: 0.2; /* Adjust opacity to your liking */
	z-index: -1;
	pointer-events: none;
}

.container {
	max-width: 600px;
	margin: auto;
	background: rgba(0,0,0,0.5);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0,0,0,0.9);
	color: #e0e0e0;
}

.input-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	background: rgba(75, 75, 75, 0.1);
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

input, select {
	padding: 10px;
	font-size: 1em;
	border: 1px solid #444;
	border-radius: 5px;
	background-color: rgba(34, 34, 34, 0.8);
	color: #e0e0e0;
}

#results {
	margin-top: 10px;
	font-weight: bold;
}

#dates-list {
	list-style-type: none;
	padding: 0;
}

.progress-container {
	margin-top: 15px;
	width: 100%;
}

.progress-bar {
	position: relative;
	height: 30px;
	background-color: #333;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: inset 0 0 5px #000;
}

#progress-label {
	position: absolute;
	width: 100%;
	text-align: center;
	line-height: 30px;
	font-weight: bold;
	z-index: 1;
	color: #fff;
}

#progress-stats {
	text-align: center;
	margin-top: 5px;
	font-size: 0.9em;
	color: #ccc;
}

.input-row {
	display: flex;
	gap: 20px;
	align-items: flex-end;
	margin-top: 10px;
}

.input-group {
	display: flex;
	flex-direction: column;
}

.dates-section {
	margin-top: 30px;
	padding: 15px;
	background: rgba(75, 75, 75, 0.1);
	border-radius: 8px;
	color: #ccc;
	box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.dates-section h2 {
	margin-bottom: 10px;
	font-size: 1.2em;
	color: #eee;
}

.dates-list {
	list-style: none;
	padding: 0;
}

.dates-list li {
	padding: 5px 0;
	border-bottom: 1px solid #555;
	color: #bbb;
}

.dates-list li:last-child {
	border-bottom: none;
}

.footer {
	margin-top: 40px;
	text-align: center;
	font-size: 0.9em;
	color: #aaa;
}

.footer a {
	color: #bbb;
	text-decoration: underline;
}

.footer a:hover {
	color: #fff;
}
