.recent-rooms {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.recent-rooms[hidden] {
    display: none;
}

.recent-rooms__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-sec);
    text-transform: uppercase;
}

.recent-rooms__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recent-rooms__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
    background: var(--surface-el);
    text-decoration: none;
    cursor: pointer;
    transition: background 120ms ease;
}

.recent-rooms__row:hover {
    background: #22223A;
}

.recent-rooms__name {
    font-size: 12px;
    color: var(--text-sec);
}

.recent-rooms__action {
    font-size: 11px;
    color: var(--accent);
    font-weight: 500;
}

.recent-rooms__row--full {
    opacity: 0.5;
    cursor: not-allowed;
}

.recent-rooms__row--full .recent-rooms__action {
    color: var(--text-sec);
}
