#roomsList {
    list-style: none;
    flex: 1;
    overflow-y: auto;
    margin: 0 8px;
}

#roomsList li {
    padding: 6px 0;
    margin: 2px 0;
}

#roomsList a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: #262626;
    border-radius: 6px;
    font-size: 14px;
}

#roomsList a:hover {
    background: #e9e9eb;
}

#roomsList a.active {
    background: #e9e9eb !important;
}

#roomsList a[data-room-id]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ebbbf;
    opacity: 0.5;
}

.room-badge {
    background: #e64b33;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 0 6px;
    border-radius: 12px;
    margin-left: 4px;
    min-height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

a > .room-badge {
    vertical-align: middle;
}