        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f5f5f5;
        }

        .music-player {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #2c3e50;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .album-cover {
            width: 80px;
            height: 80px;
            margin-right: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .album-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .album-cover img:hover {
            transform: scale(1.05);
        }

        .song-info {
            flex: 1;
            margin-right: 20px;
            color: #ecf0f1;
            width: 100%;
        }

        .song-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
        /* white-space: nowrap; */
        overflow: hidden;
        /* text-overflow: ellipsis; */
        }

        .artist-name {
            color: #bdc3c7;
            font-size: 0.9em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .controls {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: center;
        }

        button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px;
            margin: 0 12px;
            border-radius: 50%;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        button:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        button img {
            width: 32px;
            height: 32px;
            filter: invert(100%);
            transition: filter 0.3s ease;
        }

        button:hover img {
            filter: invert(70%);
        }

        .progress-bar {
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background-color: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            width: 100%;
            margin-bottom: 10px;
        }

        .progress {
            height: 100%;
            background-color: #3498db;
            width: 0%;
            transition: width 0.1s linear;
        }

        .volume-control {
            display: flex;
            align-items: center;
            margin-left: 20px;
        }

        .volume-icon {
            width: 28px;
            height: 28px;
            filter: invert(100%);
            margin-right: 10px;
        }

        .volume-slider {
            width: 100px;
            height: 5px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            -webkit-appearance: none;
            appearance: none;
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: #3498db;
            cursor: pointer;
        }

        .volume-slider::-moz-range-thumb {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: #3498db;
            cursor: pointer;
        }