.bhjms-player {
    max-width: 100%;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background: #111;
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bhjms-title-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.bhjms-title-label {
    font-weight: bold;
    margin-bottom: 2px;
}

.bhjms-title-text {
    font-size: 16px;
}

.bhjms-onair-row {
    margin: 8px 0 12px 0;
    font-size: 14px;
}

#bhjms-onair {
    margin-top: 4px;
    font-weight: bold;
    color: #aaa;
}

#bhjms-onair.onair-active {
    color: #ff3b30;
}

/* Der gesamte Moderatorblock bleibt rechts */
.bhjms-moderator {
    display: flex;
    flex-direction: column; /* Bild oben, Text darunter */
    align-items: flex-end;  /* Block rechts */
    margin-bottom: 10px;
}

/* Bild */
.bhjms-mod-pic {
    width: 160px;
    height: 160px;
    border-radius: 0;
    object-fit: cover;
    margin-bottom: 8px;
    border: 2px solid #444;
}

/* Text mittig unter dem Bild */
#bhjms-mod-name {
    font-size: 15px;
    font-weight: 600;
    text-align: center;  /* Text zentriert */
    width: 160px;        /* GLEICHE Breite wie das Bild */
}

.bhjms-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

#bhjms-playpause {
    border: none;
    background: #1e1e1e;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

#bhjms-playpause:hover {
    background: #333;
}

#bhjms-volume {
    flex: 1;
}

.bhjms-peak {
    width: 80px;
    height: 10px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
}

#bhjms-peak-bar {
    width: 0%;
    height: 100%;
    background: #4cd964;
    transition: width 0.05s linear;
}

.bhjms-history-title {
    margin-top: 12px;
    font-weight: bold;
    font-size: 14px;
}

.bhjms-history-list {
    list-style: none;
    padding-left: 0;
    margin: 5px 0 0 0;
    font-size: 13px;
}

.bhjms-history-list li {
    padding: 2px 0;
    border-bottom: 1px solid #222;
}

