#conference-room {
    width: 100%;
    min-height: 320px;

    display: flex;
    flex-direction: column;
    gap: 16px;

    padding: 20px;

    box-sizing: border-box;
}

/* TABLE */

.conference-table {
    position: relative;

    width: 180px;
    height: 82px;

    margin: 0 auto;
}

.table-surface {
    position: absolute;

    width: 180px;
    height: 34px;

    top: 10px;
    left: 0;

    background: #080808;
    border: 2px solid #fff;

    box-sizing: border-box;
}

.table-leg {
    position: absolute;

    width: 7px;
    height: 38px;

    top: 44px;

    background: #fff;
}

.leg-left {
    left: 28px;
}

.leg-right {
    right: 28px;
}

/* SERVICES */

.conference-services {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
}

.service-object {
    min-width: 70px;
    min-height: 36px;

    padding: 6px 10px;

    box-sizing: border-box;

    border: 1px solid #fff;

    background: #050505;

    color: #fff;

    font-family: monospace;
    font-size: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 0;
}

.service-object .world-object-label {
    color: #fff;
    opacity: 1;
}

/* GENERIC CONFERENCE OBJECT */

.conference-object {
    color: #fff;
    background: #050505;
    font-family: monospace;
}

/* ROOM TEXT */

.conference-environment {
    color: #fff;
}

.conference-environment h2,
.conference-environment h3,
.conference-environment p {
    color: #fff;
}
