* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            font-family: 'Arial', sans-serif;
            background-color: #f0f0f0;
            user-select: none;
        }

        .music-player {
            background-color: white;
            border-radius: 20px;
            padding: 30px;
            width: 350px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .search {
            margin-bottom: 20px;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .search input {
            width: 80%;
            padding: 10px;
            border-radius: 20px;
            border: 1px solid #ccc;
            font-size: 16px;
        }

        .album-art {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto;
            user-select: none;
            pointer-events: none;
            overflow: hidden;
        }

        .album-art img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .song-info {
            margin-top: 20px;
        }

        .song-info h3 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .song-info p {
            font-size: 14px;
            color: gray;
        }

        .progress-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
            user-select: none;
            pointer-events: none;
        }

        .progress-container input[type="range"] {
            width: 80%;
            user-select: none;
        }

        .progress-time {
            font-size: 12px;
        }

        .controls {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            align-items: center;
        }

        .controls i {
            font-size: 24px;
            cursor: pointer;
        }

        .controls .play-btn {
            font-size: 40px;
        }

        .playlist {
            margin-top: 30px;
            text-align: left;
            max-height: 200px;
            overflow-y: auto;
            border-top: 1px solid #ccc;
            padding-top: 10px;
        }

        .playlist-item {
            padding: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
        }

        .playlist-item:hover {
            background-color: #f0f0f0;
        }
        /* Add this to your existing CSS */
.playlist-item.active {
    background-color: none;
    color: none;
}