#createRoomForm {
    padding: 12px 16px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-radius: 8px;
    align-items: flex-end;
}

#createRoomForm input[type="text"] {
    flex: 1;
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    box-sizing: border-box;
}

#createRoomForm button {
    flex: 1;
    width: 100%;
    padding: 10px 14px;
    margin-top: 8px;
    background: #229ed9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
}

.room-actions {
    margin-left: 8px;
    font-size: 11px;
    display: flex;
}

.room-actions a.room-link {
    color: #707579;
    text-decoration: none;
    margin-left: 4px;
}

.room-actions a.room-link:hover {
    text-decoration: underline;
}