/* Mini-player basis */
.mini-player {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
}

/* Player image */
.player-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 333px;
    overflow: hidden;
    padding: 0rem;
    box-sizing: border-box;
}

.player-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
    display: block;
    max-width: 333px;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    max-width: 333px;
    margin: 0 auto;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 22px;
    background: #4b5e5f;
    outline: none;
    padding: 0;
    border-radius: 0 0 5px 5px;
}

.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #ff6200;
    background-color: #ff6200;
    cursor: pointer;
    border-radius: 0 0 5px 5px;
    border: 0;
    outline: none;
    box-shadow: none;
}

.progress-bar::-moz-range-thumb {
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: #ff6200;
    background-color: #ff6200;
    cursor: pointer;
    border-radius: 0 0 5px 5px;
    border: 0;
    outline: none;
    box-shadow: none;
}

/* Player info */
.player-info {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
    box-sizing: border-box;
    margin-left: -15px; /* Verwijder margin-left: auto */
}

/* Player controls container */
.player-controls-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 333px;
    margin-left: -72px; /* Verwijder negatieve marge */
}

/* Player controls */
.player-controls {
    display: flex;
    padding: 0;
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    justify-content: center;
    gap: 10px;
}

/* Control buttons */
.control-btn {
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    margin: 0;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff6200;
    transition: background-color 0.2s;
}

.control-btn:hover {
    background-color: #e55a00;
}

/* NIEUW: Styling voor de album ondertitel container en tekst */
#album-subtitle-container {
    text-align: left;
    margin-top: 1.6rem; /* Ruimte onder de progress bar */
    margin-bottom: 1rem; /* Ruimte boven het citaat */
}

/* VERVANG .album-subtitle en .album-release-date MET DIT: */
.album-info-line {
    font-size: 1.1rem;
    font-weight: 300; /* Iets lichter voor een subtiele look */
    color: #ccc;
    line-height: 1.4;
}

/* NIEUW: Styling voor de album-link in de context view */
.context-album-link {
    color: inherit; /* Neemt de kleur over van de parent (de .album-title stijl) */
    text-decoration: none;
    transition: color 0.2s ease;
}

.context-album-link:hover {
    color: var(--hover-color, #ff6200); /* Gebruikt de hover-kleur van het album */
}


/* Lyrics styling - aangepast voor juiste spacing */
.lyrics {
    margin-top: 0px; /* Verlaag dit naar gewenste waarde */
}

/* Of voor consistency met andere content-blocks: */
.lyrics {
    margin-top: 1rem; /* Zelfde als andere content-blocks */
}

.lyrics-page {
    text-align: center;
}

.lyrics-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Voor mobiel */
@media (max-width: 767px) {
    .lyrics {
        margin-top: 15px; /* Of 0.8rem voor consistency */
    }
}

/* Responsieve aanpassingen grote schermen */
@media (min-width: 768px) {
    .mini-player {
        flex-wrap: nowrap;
        align-items: stretch;
    }
    
    .player-controls-container {
        text-align: center;
    }

    .player-info {
        text-align: left;
        padding-left: 2rem; /* Voeg wat ruimte toe aan de linkerkant */
    }

    .player-controls {
        justify-content: center;
    }
}

/* Responsieve aanpassingen kleine schermen */
@media (max-width: 767px) {
    .mini-player {
        padding: 0.5rem;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .player-image {
        margin: 0 auto;
        max-width: 222px;
        width: 100%;
    }

    .player-image img {
        max-width: 222px;
    }

    .player-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-left: 0px;
    }


    .player-controls-container {
        text-align: center;
        max-width: 222px;
        margin-top: 0px; 
        margin-left: 0;
    }

    .player-controls {
        margin-left: 0;
        justify-content: center;
        gap: 10px;
    }

    .progress-bar {
        height: 11px;
        max-width: 222px;
        border-radius: 0 0 8px 8px;
        margin: 0 auto;
    }
    
    .progress-bar::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 11px;
        height: 11px;
        border-radius: 2px;
        border: 0;
        outline: none;
        box-shadow: none;
    }
    
    .progress-bar::-moz-range-thumb {
        -moz-appearance: none;
        appearance: none;
        width: 11px;
        height: 11px;
        border-radius: 2px;
        border: 0;
        outline: none;
        box-shadow: none;
    }

    .control-btn {
        width: 44px;
        height: 44px;
        margin: 0;
    }

    .mini-player .title {
        font-size: 1.8rem;
    }

    .mini-player .subtitle {
        font-size: 1.2rem;
    }

    .mini-player .album-title {
        font-size: 1.2rem;
    }

    .mini-player h6 {
        font-size: 0.9rem;
    }

    .lyrics {
        margin-top: 15px;
    }
    
    .lyrics-image {
        border-radius: 5px;
    }
}
