            .player-glass-container {
                border: 1px solid rgba(255, 255, 255, 0.3) !important;
                border-radius: 30px;
                padding: 5px;
                backdrop-filter: blur(15px) saturate(160%);
                -webkit-backdrop-filter: blur(15px) saturate(160%);
                box-shadow: 
                0 8px 32px rgba(93, 90, 91, 0.8),  /* Gekleurde gloed */
                0 0 15px rgba(93, 90, 91, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(255, 255, 255, 0.1),
                inset 0 0 20px 10px rgba(255, 255, 255, 0.1); /* Tip: verlaag deze van 1 naar 0.1 */
                position: relative;
                overflow: hidden;
            }
            table.audio-player-table {
                background: transparent !important;
                border: none !important;
                margin: 0 !important;
                border-collapse: collapse;
                width: 100%;
            }
            .audio-player-table td {
                padding: 15px;
                vertical-align: middle;
                background: transparent !important;
            }
            .button-play-pause {
                width: 54px;
                height: 54px;
                border-radius: 50%;
                background: rgba(0, 255, 255, 0.05) !important;
                border: 2px solid rgba(0, 255, 255, 0.3) !important;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                padding: 0;
                margin: 0 auto;
            }
            .button-play-pause img {
                height: 26px;
               width: 26px;
               display: block;
               filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8));
            }
            .button-play-pause:hover:not(:disabled) {
                transform: scale(1.1);
                background: rgba(0, 255, 255, 0.15) !important;
                border-color: #00ffff !important;
                box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
            }
            .button-play-pause:disabled {
                /*opacity: 0.3 !important;*/
                cursor: not-allowed;
                /*filter: grayscale(100%);*/
                border-color: rgba(255, 255, 255, 0.1) !important;
            }
            .meter-bg {
                position: relative;
                width: 100%;
                height: 10px;
                margin: 8px 0;
        
                background: rgba(255, 255, 255, 0.2); 
                border-radius: 5px;
                box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 
                0 1px 0 rgba(255, 255, 255, 0.4);
            }
            .meter, .meterB {
                height: 100%;
                width: 0%;
                border-radius: 5px;

                background: linear-gradient(90deg, #00ffff 0%, #33eb3f 75%, #ff0000 100%);
                box-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
                position: relative;
            }
            /* Clipping indicator */
            #meter, #meterB {
                width: 0%;
                height: 100%;
                /* Verhoog van 0.1s naar 0.2s of 0.3s voor meer traagheid */
                transition: width 0.5s cubic-bezier(0.1, 0.4, 0.1, 1);
                will-change: width;
            }
            .clipping {
                background-color: red !important;
                box-shadow: 0 0 20px rgba(255, 0, 85, 0.8) !important
            }
        