.dm-slide-panel {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 100%;
    transform: translateX(100%);
    transition: transform 250ms ease;
    background: var(--mud-palette-surface, #1e1e1e);
    box-shadow: -4px 0 16px rgba(0,0,0,0.4);
    z-index: 1300;
    display: flex;
    flex-direction: column;
}
.dm-slide-panel--open {
    transform: translateX(0);
}
.dm-slide-panel > * {
    flex: 1 1 auto;
    min-height: 0;
}

.audio-chat-error-banner {
    padding: 8px 12px;
    background: rgba(220, 53, 69, 0.15);
    color: #ff8b96;
    font-size: 12px;
    border-bottom: 1px solid rgba(220, 53, 69, 0.35);
    word-break: break-word;
    flex: 0 0 auto;
}

.audio-chat-status {
    margin-left: auto;
    margin-right: 8px;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.audio-chat-status--reconnecting {
    background: rgba(255, 193, 7, 0.2);
    color: #ffd54f;
}
.audio-chat-status--disconnected {
    background: rgba(220, 53, 69, 0.2);
    color: #ff8b96;
}
.audio-chat-error-dismiss {
    float: right;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0 4px;
}

.audio-chat-title-block {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    flex: 1 1 auto;
    min-width: 0;
}
.audio-chat-title {
    font-weight: 600;
}
.audio-chat-presence {
    font-size: 11px;
    color: var(--mud-palette-text-secondary, #aaa);
}
.audio-chat-presence--online {
    color: #4caf50;
}
.audio-chat-presence--online::before {
    content: "•";
    margin-right: 4px;
    font-size: 14px;
    vertical-align: -1px;
}
