
body {
	text-align: center;
	font-family: Arial, sans-serif;
	margin-left: 350px;
	margin-right: 370px;
	background-color: #f0f8ff; /* Soft blue background */
	background-image: url("https://www.shutterstock.com/image-vector/background-confetti-dancing-like-cracker-600nw-2323838765.jpg");
}

h1 {
	text-align: center;
	color: #950; /* Soft orange */
}

form, .sidebar {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #4682b4; /* Soft blue */
}

input, textarea, button {
	width: 90%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

button {
	background-color: #ff7f50; /* Soft orange */
	color: white;
	border: none;
	cursor: pointer;
}

button:hover {
	background-color: #ff6347; /* Slightly darker orange */
}

ul {
	list-style-type: none;
	padding: 0;
}

li {
	margin: 5px 0;
	padding: 10px;
	background-color: #f1f1f1;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.delete-btn {
	background-color: transparent;
	border: none;
	color: #ff6347; /* Slightly darker orange */
	font-size: 16px;
	cursor: pointer;
	width:40px;
}

.delete-btn:hover {
	color: #ff4500; /* Even darker orange */
}


.sidebar {
	position: fixed;
	top: 0;
	width: 300px;
	height: 100%;
	overflow: auto;
	transition: 0.3s;
	z-index: 1000;
	background-color: #ffffff;
	transition: left 0.4s ease, right 0.4s ease;
}

.sidebar.left {
	left: -300px;
}

.sidebar.left.open {
	left: 0;
}

.sidebar.right {
	right: -300px;
}

.sidebar.right.open {
	right: 0;
}

.floating-btn {
	position: fixed;
	bottom: 20px;
	background-color: #4682b4; /* Soft blue */
	color: white;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
	z-index: 1100;
}

.floating-btn.left {
	left: 20px;
}



.floating-btn.right {
	right: 20px;
}


.floating-btn:hover {
	background-color: #4169e1; /* Slightly darker blue */
}

.winner {
	font-size: 1.2em;
	font-weight: bold;
	color: #4682b4; /* Soft blue */
}


/* Tampilan satu kolom di tengah */
#winnersList.single-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%; /* Lebar 60% agar lebih ramping di tengah */
    margin: 0 auto;
}

/* Tampilan dua kolom */
#winnersList.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
	column-gap:40px;
    width: 100%; /* Isi area yang tersedia untuk dua kolom */
}

.prize-group {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
}

.prize-group li.winner {
    margin-bottom: 5px;
}

footer {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 0; /* Memberikan ruang pada footer */
    background-color: #f0f8ff; /* Warna latar belakang footer */
    color: #4682b4; /* Warna teks */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Bayangan di atas footer */
    font-family: Arial, sans-serif;
}