#miniplay {
		font-family: "Inter", serif;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, #0689E4 0%, white 100%);
		border: 1px solid black; /* changed bg & border colors */
    box-shadow: inset 10px 0px 6px -10px #CCC, inset -10px 0px 6px -10px #CCC, inset 0px 10px 6px -10px #FFF, inset 0px -10px 6px -10px #CCC;
		padding: 12px;
		position: relative;
		height: 100%;
	}

	.stats {
		display: flex;
		align-items: center;
	}

  .track-art {
		width: 4em;
		height: 4em; /* adjusted width and height */
		object-fit: cover;
		border-radius: 4px;
		border: 1px solid black; /* added this line */
		background-size: cover;
		background-position: center;
	}


	.slider_container {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 12px 0 12px 0;
	}

	.current-time,
	.total-duration {
		color: #666;
		font-family: MS San Serif; /* changed font */
		font-size: 12px;
		padding: 4px;
	}

	.seek_slider,
	.volume_slider {
		width: 100%;
	}

	.seek_slider,
	.volume_slider {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		height: 3px;
		background: #bbb;
	}

	.now-playing,
	.track-name,
	.track-artist {
		color: white;
		font-family:'kiwi';
		font-size: 20px; /* changed color & font size + added font */
		font-weight: 500;
		line-height: 1.3;
    filter: drop-shadow(0px 1px #0689e4) drop-shadow(0 -1px #0689e4) drop-shadow(1px 0 #0689e4) drop-shadow(-1px 0 #0689e4) drop-shadow(0px 1px #0032db) drop-shadow(0 -1px #0032db) drop-shadow(1px 0 #0032db) drop-shadow(-1px 0 #0032db); /* added this */
	}


	.now-playing {
		display: none;
	}

	.bttn {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 14px;
	}

	.playpause-track,
	.prev-track,
	.next-track {
		opacity: 0.5;
		color: #000;
		transition: opacity 0.2s;
	}

	.playpause-track:hover,
	.prev-track:hover,
	.next-track:hover {
		opacity: 0.8;
	}