.btn-dark-brown {
	--bs-btn-color: #fff;
	--bs-btn-bg: #6e4f2a;
	--bs-btn-border-color: #6e4f2a;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #5e4324;
	--bs-btn-hover-border-color: #523b20;
	--bs-btn-focus-shadow-rgb: 110, 79, 42;
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #523b20;
	--bs-btn-active-border-color: #4a351d;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: #6e4f2a;
	--bs-btn-disabled-border-color: #6e4f2a;
}

.image-container {
	position: relative;
	display: inline-block;
}

.image-checkbox {
	position: absolute;
	top: 5px;
	left: 5px;
	/* cursor: pointer; */
	width: 15px;
	height: 15px;
	/* background-color: rgba(255, 255, 255, 0.7); */
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s ease-in-out;
}

.image-checkbox input[type="checkbox"] {
	/* display: none; */
}

.image-checkbox input[type="checkbox"]:checked + .checkbox-icon {
	background-color: rgba(0, 123, 255, 0.7);
}

.image-container img {
	display: block;
	cursor: pointer;
	width: 265px;
	height: 120px;
	/* border-radius: 5px; */
}

.caption {
	text-align: center;
	margin-top: 10px;
}

.pagination .page-link {
	/* color: #fff; */
	/* Warna teks */
	/* background-color: #6e4f2a; */
	/* Warna background */
	/* border-color: #6e4f2a; */
	/* Warna border */
}

.pagination .page-link:hover {
	/* color: #6e4f2a; */
	/* Warna teks saat hover */
	/* background-color: #efc99c; */
	/* Warna background saat hover */
	/* border-color: #6e4f2a; */
	/* Warna border saat hover */
}

.pagination .page-item.active .page-link {
	/* color: #fff; */
	/* Warna teks pada halaman aktif */
	/* background-color: #4a3821; */
	/* Warna background pada halaman aktif */
	/* border-color: #4a3821; */
	/* Warna border pada halaman aktif */
}

.pagination .page-item.disabled .page-link {
	/* color: #ccc; */
	/* Warna teks pada halaman yang dinonaktifkan */
	/* background-color: #6e4f2a; */
	/* Warna background pada halaman yang dinonaktifkan */
	/* border-color: #6e4f2a; */
	/* Warna border pada halaman yang dinonaktifkan */
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

.form-select-custom {
	--bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	display: block;
	width: 100%;
	padding: 0.375rem 2.25rem 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: white;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #6e4f2a; /* Warna coklat gelap */
	background-image: var(--bs-form-select-bg-img),
		var(--bs-form-select-bg-icon, none);
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	border: 1px solid #6e4f2a;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-select-custom:focus {
	background-color: #5c4524;
	border-color: #5c4524;
	color: white;
	box-shadow: 0 0 0 0.25rem rgba(110, 79, 42, 0.5);
}

.item-cart {
	overflow-y: scroll;
	height: 280px;
}

.order-cart {
	overflow-y: scroll;
	height: 280px;
}

@media screen and (max-width: 768px) {
	.image-container img {
		width: 170px;
		height: 100px;
	}
	.item-cart {
		overflow-y: scroll;
		height: 380px;
	}
}

.btn-custom-baby-class {
    background-color: rgb(164, 47, 95); /* warna lebih gelap dari background */
    color: #fff; /* teks putih */
    border: none;
    /*  */
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom-baby-class:hover {
    background-color: rgb(144, 35, 80); /* lebih gelap saat hover */
    color: #fff;
    box-shadow: 0 0 10px rgba(204, 59, 119, 0.4);
}

.btn-custom-baby-class:active {
    background-color: rgb(120, 30, 70); /* saat ditekan */
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.btn-custom-baby-class:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(204, 59, 119, 0.5);
}

.btn-custom-baby-class {
    background-color: rgb(164, 47, 95);
    color: #fff;
    border: none;
    
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom-baby-class:hover {
    background-color: rgb(144, 35, 80);
    color: #fff;
    box-shadow: 0 0 10px rgba(204, 59, 119, 0.4);
}

.btn-custom-baby-class:active {
    background-color: rgb(120, 30, 70);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.btn-custom-baby-class:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(204, 59, 119, 0.5);
}

/* === BADMINTON === */
.btn-custom-badminton {
    background-color: rgb(180, 155, 0);
    color: #fff;
    border: none;
    
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-custom-badminton:hover {
    background-color: rgb(160, 140, 0);
	color: #fff;
    box-shadow: 0 0 10px rgba(217, 185, 1, 0.4);
}
.btn-custom-badminton:active {
    background-color: rgb(140, 120, 0);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.btn-custom-badminton:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(217, 185, 1, 0.5);
}

/* === BASKET === */
.btn-custom-basket {
    background-color: rgb(180, 75, 0);
    color: #fff;
    border: none;
    
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-custom-basket:hover {
    background-color: rgb(160, 65, 0);
	color: #fff;
    box-shadow: 0 0 10px rgba(220, 93, 0, 0.4);
}
.btn-custom-basket:active {
    background-color: rgb(140, 55, 0);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.btn-custom-basket:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(220, 93, 0, 0.5);
}

/* === DANCE === */
.btn-custom-dance {
    background-color: rgb(150, 50, 130);
    color: #fff;
    border: none;
    
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-custom-dance:hover {
    background-color: rgb(130, 40, 110);
	color: #fff;
    box-shadow: 0 0 10px rgba(184, 65, 165, 0.4);
}
.btn-custom-dance:active {
    background-color: rgb(110, 30, 90);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.btn-custom-dance:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(184, 65, 165, 0.5);
}

/* === FUTSAL === */
.btn-custom-futsal {
    background-color: rgb(0, 160, 0);
    color: #fff;
    border: none;
    
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-custom-futsal:hover {
    background-color: rgb(0, 140, 0);
	color: #fff;
    box-shadow: 0 0 10px rgba(7, 193, 0, 0.4);
}
.btn-custom-futsal:active {
    background-color: rgb(0, 120, 0);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.btn-custom-futsal:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(7, 193, 0, 0.5);
}

/* === GYM5 === */
.btn-custom-gym5 {
    background-color: rgb(200, 30, 30);
    color: #fff;
    border: none;
    
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-custom-gym5:hover {
    background-color: rgb(180, 20, 20);
	color: #fff;
    box-shadow: 0 0 10px rgba(237, 37, 37, 0.4);
}
.btn-custom-gym5:active {
    background-color: rgb(150, 15, 15);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.btn-custom-gym5:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(237, 37, 37, 0.5);
}

/* === SWIMMING === */
.btn-custom-swimming {
    background-color: rgb(0, 140, 165);
    color: #fff;
    border: none;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-custom-swimming:hover {
    background-color: rgb(0, 120, 140);
	color: #fff;
    box-shadow: 0 0 10px rgba(0, 169, 197, 0.4);
}
.btn-custom-swimming:active {
    background-color: rgb(0, 100, 120);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}
.btn-custom-swimming:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(0, 169, 197, 0.5);
}

