
/* Debug */
/* ----------------------------------------- -*/
.debug-grid {
/* ----------------------------------------- -*/
    /*border: 1px solid red;*/
    border: none;
}

/* ----------------------------------------- -*/
.debug-grid > * {
/* ----------------------------------------- -*/
    /*border: 1px solid red;*/
    border: none;
}

/* ----------------------------------------- -*/
.player-grid button {
/* ----------------------------------------- -*/
    color: var(--player-symbol-color);
}

/* ----------------------------------------- -*/
.player-link {
/* ----------------------------------------- -*/
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

/* ----------------------------------------- -*/
.player-link:hover {
/* ----------------------------------------- -*/
    opacity: 1;
}
.player-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
/* ----------------------------------------- -*/
.player-group {
/* ----------------------------------------- -*/
    /* display: flex;  alles im sechser pack rechts */
    display: contents;
	
    flex-direction: column;
    gap: 8px;
}
/* ----------------------------------------- -*/
body.player-active .main-menu {
    display: none;
}
/* ----------------------------------------- 
.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
} 
*/
/* ----------------------------------------- -*/
.player-controls {
/* ----------------------------------------- -*/    
    display: flex;
    flex-direction: row;
    justify-content: center;
	align-items: center;	
    gap: 8px;
	margin-top: 4px;
}
/* ----------------------------------------- -*/v
/* wir das überhaupt noch verwendet ??
/* ----------------------------------------- -*/v
.player-grid {
/* ----------------------------------------- -*/
    display: grid;
    grid-template-columns: repeat(3, 36px);
    grid-template-rows: repeat(2, 36px);
    gap: 6px;
    justify-content: center;
}

/* ----------------------------------------- -*/
.player-grid button,
.player-reserve {
/* ----------------------------------------- -*/
    width: 36px;
    height: 36px;
}

/* ----------------------------------------- -*/v
/* Rahmen um den Player
/* ----------------------------------------- -*/v
.player-bar {
/* ----------------------------------------------- */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.player-box {
    width: 760px;
    height: 76px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: transparent;
    border: 1px solid #d7d3cb;
    border-radius: 6px;

    overflow: hidden;
}

.player-title {
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #8f8a81;
    text-align: center;

    border-bottom: 1px solid #d7d3cb;
}

.player-controls {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}



#player-repeat img,
#player-stop img {
/* ----------------------------------------------- */
    display: block;
    height: 40px;
    width: auto;
}


/*--------------------------------------------------
/* alles für en scroll es songtextes

/*--------------------------------------------------*/

.current-track.is-scrolling {
    animation: track-scroll 10s linear infinite;
}

@keyframes track-scroll {
    from { transform: translateX(100%); }
    to   { transform: translateX(-100%); }
}

/* neu ab 25.3.2026 */
.player-head-controls {
/* ----------------------------------------------- */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* ----------------------------------------------- */
.mini-player {
/* ----------------------------------------------- */
    display: grid;

    /* grid-template-columns:
        1fr        /* linke Zone 
        1fr        /* Track-Zone 
        1fr;       /* rechte Zone */
        
    grid-template-columns: 19% 62% 19%;
  
    width: 100%;

    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;

    box-sizing: border-box;

}
/* ----------------------------------------------- */
.player-zone-left {
/* ----------------------------------------------- */
    display: flex;
    justify-content: flex-end;
    align-items: right;
    gap: 0px;
    padding-right: 0px;
}

/* ----------------------------------------------- */
.player-zone-right {
/* ----------------------------------------------- */
    display: flex;
    justify-content: flex-start;
    align-items: left;
    gap: 0px;
    padding-left: 0px;
}

/* ----------------------------------------------- */
.player-btn {
/* ----------------------------------------------- */
    display: flex;
    line-height: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

/* ----------------------------------------------- */
.player-btn img {
/* ----------------------------------------------- */
    display: block;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
}
/* ----------------------------------------------- */
.player-btn-left{
/* ----------------------------------------------- */
     min-height: 46px;
    display: flex;
	justify-self:end;
}
/* ----------------------------------------------- */
.player-btn-right{
    min-height: 46px;
    display: flex;
	justify-self:start;
/* ----------------------------------------------- */
}
/* ----------------------------------------------- */
.player-btn:hover {
/* ----------------------------------------------- */
    color: #6f6a62;
}

/* ----------------------------------------------- */
.current-track-frame {
/* ----------------------------------------------- */
    width: 100%;
    min-height: 46px;

    position: relative;
    overflow: hidden;
    box-sizing: border-box;

    display: block;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

/* ----------------------------------------------- */
.current-track {
/* ----------------------------------------------- */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    display: block;
    /*white-space: nowrap;*/
    white-space: normal;
    text-align: center;
    line-height: 1;

    color: navy;
    font-weight: 640;
    font-size: 0.78em;
}
.current-track.is-scrolling {
    animation: trackScroll linear infinite;
}

@keyframes trackScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}