		:root{
			--maximale_Breite : 60%;
		}
		body{
			background-color: #f2cea2;
			width: 100vh;
			overflow-y: scroll;
			font-family: Calibri, Arial;
		}
        h2{
        	margin-top: 30px;
        	margin-bottom: -10px;
        }
		div.bannerofplaylist {
			position: absolute;
			top: 0px;
			width: 120%;
			height: 16%;
			padding-top: 10px;
			background-color: #a62934;
		}
		
		div.playlist {
			position: absolute;
			display: flex;	
			flex: 1;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			margin-left: 4%;
			margin-right: 4%;
			background-color: #f2cea2;
			width: 88%;
		}
	
        .song-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
            padding: 15px;
            border: 2px solid #ccc;
            border-radius: 8px;
            min-height: 100px;
        }
        #selectedContainer {
			position: relative;
			margin-top: 4%;
			
            width: 70vw;
        }
        #availableContainer {
			width: 70vw;
			margin-left: -16%;
        }
        
        .song-item {
            width: 150px;
			margin: -60px;
			height: 160px;
            cursor: pointer;
            text-align: center;
            border: 2px solid transparent;
            border-radius: 8px;
            padding: 10px;
            transition: all 0.2s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
			transform: scale(0.4);
			background-color: #f2cea2;
        }
        .song-item:hover {
            transform: scale(1.0);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
			z-index: 90;
        }
		.song-item:not(:hover) {
			transform: scale(0.4);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
			z-index: 2;
        }
		
        .song-item img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 8px;
        }
        .song-item span {
            display: block;
            font-size: 0.9em;
            word-break: break-word;
        }
        .song-item.playing {
            border-color: #4CAF50;
            background-color: #e8f5e9;
        }
        
        .controls-playlist {
            margin-bottom: 20px;
            display: flex;
        }
        
         .progress-section-playlist {
			width: calc(var(--maximale_Breite) + 60%);
			margin-left: 30px;
			margin-right: 20px;
        }
        
        .progress-bar-playlist {
            min-width: 700px;
            height: 4px;
			margin-top: -6px;
            background-color: #f2cea2;
            border-radius: 4px;
            cursor: pointer;
        }
        
        #selectedSongs .song-item {
            border-color: #2196F3;
        }
        
        #selectedSongs .song-item:hover{
            transform: scale(1.0);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 90;
        }
        #selectedSongs	.song-item:not(:hover) {
			transform: scale(0.4);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
			z-index: 2;
        }
        
        #controls {
            margin: 20px 0;
            display: flex;
            gap: 15px;
            align-items: center;
        }
        #play_pause_Btn {
            display: flex;
			justify-content: center;
			align-items: center;
            font-size: 1.1em;
			cursor: pointer;
            border: none;
            border-radius: 5px;
            height: 60px;
            width: 60px;
            background-color: #a62934;
            background-image: url("/bilder/KnopfAbsp.png");
			background-repeat: no-repeat;
			background-size: 60px;
            transition: background-color 0.2s;
        }
        
        #resetBtn {
            display: flex;
			justify-content: center;
			align-items: center;
            font-size: 1.1em;
			cursor: pointer;
            border: none;
            border-radius: 5px;
            height: 60px;
            width: 60px;
            background-color: #a62934;
            background-image: url("/bilder/reset.png");
			background-repeat: no-repeat;
			background-size: 60px;
            transition: background-color 0.2s;
        }
        
        #currentTitle {
            font-style: italic;
            color: #555;
            margin: 10px 0;
        }
        .info-text {
            color: #666;
            margin: 5px 0;
        }
		
		@media only screen and (orientation: portrait) and (width <= 26cm){
			#dropdown {
				transform: scale(0.4);
				z-index: 6; 
				
			}
			
			#selectedContainer {
				margin-top: 18%;
			}
			.progress-section-playlist {
				height: 30px;
				margin-left: 10px;
			}
			.progress-bar-playlist {
				min-width: 180px;
				width: auto;
			}
		}
