body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	background-color: black;
}

#slideshow-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

img {
	object-fit: cover;   /* Ảnh sẽ phủ hết vùng chứa, có thể bị cắt */
	object-position: left;  /* Căn ảnh từ bên trái */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 0;
	transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}


img.active {
	opacity: 1;
	z-index: 1;
}

img.fade-out {
	z-index: 0;
	opacity: 0;
}

img.slide-next,
img.slide-prev {
	transition: transform 1s ease-in-out;
}

img.zoom {
    transform: scale(1.05);
    transition: transform 1s ease-in-out;
}

img.zoom-in {
	transform: scale(1.2);
}

img.zoom-out {
	transform: scale(1);
}

#settings {
	position: fixed;
	bottom: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	padding: 10px;
	border-radius: 5px;
	color: white;
	font-size: 14px;
}

#datetime-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px; /* Thêm khoảng cách bên trong */
	border-radius: 8px; /* Làm bo góc khung */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Thêm hiệu ứng đổ bóng */
	position: fixed;
	top: 10px;
	right: 10px;
	color: white;
	background: rgba(250, 250, 250, 0.5);    
	display: none; /* Chỉ hiển thị khi checkbox được chọn */
	z-index: 1000; /* Đảm bảo phần tử không bị che khuất */
	width: 300px; /* Chiều rộng tính theo phần trăm */
	height: auto; /* Chiều cao tự động dựa vào nội dung */
	text-align: center;
}
#time {
	font-size: 20px; /* Kích thước nhỏ hơn */
	color: #3e3e3e; /* Màu sắc nhẹ hơn */
	font-family: 'Arial', sans-serif; /* Font chữ đẹp */
}

#gregorian-date {
	font-size: 15px; /* Kích thước lớn hơn */
	color: #5e5e5e; /* Màu đậm hơn */
	font-family: 'Arial', sans-serif; /* Font chữ đẹp */
	font-weight: bold; /* Làm đậm chữ */
}

input[type="number"], select {
	margin-left: 5px;
	margin-bottom: 5px;
}

button {
	margin-left: 10px;
}