.room-participants-card__head {
    display: grid;
    gap: 10px;
    margin: 0 0 12px;
}

.room-participants-card__title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
}

.room-participants-card__search {
    min-width: 0;
}

.room-participants-card__search-input {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    font-size: 14px;
    line-height: 1;
    outline: none;
    box-sizing: border-box;
}

.room-participants-card__search-input:focus {
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.15);
}

@media (max-width: 900px) {
    .room-participants-card__title-wrap {
        flex-direction: column;
        align-items: stretch;
    }
}