        :root{
			--maximaleBreite : 60%;
		}
		
        .audio-player {
            background-color: #d9725b;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 5px;
			padding-top: 2px;
			padding-right: 20px;
            width: 100%;
            max-width: var(--maximaleBreite);
			max-height: 36px;
            margin: 0 auto;
        }
        
         /* Audio-Element verstecken, da wir es nur für die Audio-Daten verwenden */
        #audioElement {
           display: none;
        }
        
        .controls {
            margin-bottom: 20px;
			display: flex;
        }
        
        .play-pause-btn {
            background-color: #d9725b;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 36px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px 0px;
            transition: all 0.3s ease;
            /*box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);*/
			background-image: url("../bilder/KnopfAbsp.png");
			background-size: contain;
        }
		
		.disabledPlay {
            background-color: #d9725b;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px 0px;
            transition: all 0.3s ease;
            /*box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);*/
			background-image: url("../bilder/KnopfAbspGrau.png");
			background-repeat: no-repeat;
			background-size: contain;
        }
        
        .play-pause-btn:hover {
            transform: scale(1.05);
        }
        
        .play-pause-btn:active {
            transform: scale(0.98);
        }
        
        .progress-section {
			width: calc(var(--maximaleBreite) + 32%);
        }
        
        .time-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-size: 0.9rem;
            color: #000000;
        }
        
        .progress-bar {
            width: 100%;
            height: 4px;
			margin-top: -6px;
            background-color: #f2cea2;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .progress {
            height: 100%;
            background-color: #000000;
            width: 0%;
            border-radius: 4px;
            transition: width 0.1s;
        }
        
        .volume-section {
			transform: rotate(270deg);
            display: flex;
            align-items: center;
            margin-top: 0px;
			margin-left: 20px;
			width: 20px;
			height: 80px;
        }
        
        .volume-icon {
			transform: rotate(180deg);
			color: #000000;
            font-size: 30px;
            width: 32px;
			margin-top: 4px;
			margin-left: 4px;
        }
        
        .volume-slider {
            height: 4px;
            -webkit-appearance: none;
            appearance: none;
            background-color: #f2cea2;
            border-radius: 3px;
            outline: none;
			display: none;
        }
		
		.slider-surroundings{
			width: 270px;
			height: 36px;
			display: flex;
			align-items: center;
			background-color: #d9725b;
			border-radius: 16px;
			margin-left: 10px;
			padding-right: 6px;
		}
		
		.slider-surroundings:hover #volumeSlider{
			display: block;
		}
		
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: #000000;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .volume-slider::-webkit-slider-thumb:hover {
            transition: background-color 0.2s;
        }
        
        .volume-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: #000000;
            cursor: pointer;
            border: none;
        }
        
        #currentTime{
        	font-family: Calibri, Arial;
        }
        #duration{
        	font-family: Calibri, Arial;
        }
        
        @media (max-width: 600px) {
            .audio-player {
               padding: 20px 15px;
            }
            
            .player-header h1 {
                font-size: 1.5rem;
            }
            
            .track-info {
                padding: 12px;
            }
            
            .album-art {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }
        }