/* WA */
.wa-button {
    position: fixed;
    bottom: 20px;
    left: 15px;
    z-index: 1000;
    width: 50px;
    height: 50px;
}

.wa-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
    object-fit: contain;
    display: block;
}

.wa-button:focus {
    outline: none;
}

.wa-button {
    -webkit-tap-highlight-color: transparent; /* Menghilangkan efek sorotan */
}

.wa-button:active {
    transform: scale(0.9); /* Mengecilkan ukuran tombol saat ditekan */
    transition: transform 0.1s ease; /* Transisi agar terlihat halus */
}


/* Lagu */
.music-button {
	position: fixed;
	bottom: 75px;
	left: 19px;
	z-index: 1000;
	width: 40px;
	height: 40px;
}

.music-button button {
	width: 100%;
	height: 100%;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	outline: none;
}

.music-button img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	transition: transform 0.5s;
	object-fit: contain;
	display: block;
}

.music-button button {
    -webkit-tap-highlight-color: transparent; /* Menghilangkan efek sorotan */
}

/* Animasi rotasi terus-menerus */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Terapkan animasi saat musik diputar */
.spinning {
	animation: spin 2s linear infinite;
}