/*body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f8f9fa;
        }*/
        .player-container {
			 max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background-color:#414141 ;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .player-header {
            text-align: center;
            margin-bottom: 20px;
        }
        .now-playing {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .artist {
            color: white;
            font-size: 14px;
			font-style: italic;
        }
        .controls {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            margin: 0 15px;
            color: white;
            transition: all 0.2s;
        }
        .btn:hover {
            color: #212529;
            transform: scale(1.1);
        }
        .btn-play {
            font-size: 36px;
        }
        .progress-container {
            margin-bottom: 25px;
        }
        .progress-bar {
            width: 100%;
            height: 6px;
            background-color: #e9ecef;
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 5px;
            cursor: pointer;
        }
        .progress {
            height: 100%;
            background-color: #0d6efd;
            width: 0%;
            transition: width 0.1s;
        }
        .time {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #6c757d;
        }
        .volume-control {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .volume-slider {
            width: 100px;
            margin: 0 10px;
        }
        .playlist {
            list-style: none;
            padding: 0;
            margin: 0;
            border-radius: 8px;
            overflow: hidden;
        }
        .playlist-item {
            padding: 12px 15px;
            border-bottom: 1px solid #e9ecef;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.2s;
        }
        .playlist-item:hover {
            background-color: lightgray;
        }
        .playlist-item.active {
            background-color:#8B8B8B;
            color: #0d6efd;
        }
        .song-info {
            flex-grow: 1;
        }
        .song-title {
            font-weight: 500;
            margin-bottom: 3px;
        }
        .song-artist {
            font-size: 12px;
            color: white;
			font-style: italic;
        }
        .song-duration {
            font-size: 13px;
            color: white;
        }