body {
	margin: 0;
	font-family: sans-serif;
}

.menu-toggle {
	display: none;
}

.menu-toggle-btn {
	position: fixed;
	top: 10px;
	left: 10px;
	font-size: 24px;
	cursor: pointer;
	z-index: 1001;
	background-color: #ddd;
	padding: 5px 10px;
	border-radius: 4px;
}

/* Sidebar over content */
.sidebar {
	a {
		text-decoration: none;
	}
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 200px;
	background-color: #f0f0f0;
	padding-top: 80px;
	padding-left: 20px;
	box-sizing: border-box;
	overflow: hidden;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	z-index: 1000;
}

.menu-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	cursor: pointer;
	transition: opacity 0.2s;
}

.menu-item:hover {
	opacity: 0.7;
}

.icon {
	width: 48px;
	height: 48px;
	margin-right: 10px;
}

.label {
	font-size: 16px;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	transition: opacity 0.3s ease;
}

.main-content {
	padding: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

/* Show sidebar when checked */
.menu-toggle:checked ~ .sidebar {
	transform: translateX(0);
}

.raffle-image {
	transform: rotate(45deg);
	margin: 50px;
}

.random-btn {
	width: 200px;
	height: 50px;
	background-color: #4caf50;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	line-height: 50px;
	transition: background-color 0.3s ease;
}

.random-btn:hover {
	background-color: #45a049;
}

.list-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
}

.item-text {
	display: inline-block;
	width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.delete-btn {
	width: 100%;
	height: 100%;
	padding: 0;
	box-sizing: border-box;
	background-color: #e57373;
	color: white;
	border: none;
	border-radius: 1px;
	font-size: 16px;
	cursor: pointer;
	text-align: center;
	line-height: 50px;
	transition: background-color 0.3s ease;
}

.delete-btn:hover {
	background-color: #d32f2f;
}

.item-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

.item-table th,
.item-table td {
	border: 1px solid #ddd;
	padding: 8px;
}

.item-table th {
	background-color: #f2f2f2;
	font-weight: bold;
}

.item-table td:nth-child(1) {
	width: 50px;
}

.item-table td:nth-child(2) {
	width: 200px;
}

.item-table td:nth-child(3) {
	width: 50px;
}

.item-input {
	width: 300px;
	height: 30px;
	padding: 10px;
	font-size: 16px;
	text-align: center;
	border: 2px solid #ccc;
	border-radius: 5px;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.item-input:focus {
	border-color: #4caf50;
	box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}
