div {
    /* border: 1px solid black; */
}

html, body {
    height: 100%;
}

*, .normal-font {
    font-family: 'Open Sans Regular', sans-serif !important;
}


.table td.fit,
.table th.fit {
    white-space: nowrap;
    width: 1%;
}

.clickable-row, .room-description, .userlistname {
    cursor: pointer;
}

.userlistname:hover {
    font-weight: bolder;
}

.timestamp {
    font-family: monospace;
    font-size: smaller;
}

.room-welcome {
    padding: 10px;
    font-weight: bolder;
    background-color: black;
    border-radius: 5px;
    border: 1px solid #fd52c0;

}

#context-menu {
    position: fixed;
    z-index: 10000;
    /*width: 150px;*/
    border-radius: 1em;
    transform: scale(0);
    transform-origin: top left;
}

#context-menu.visible {
    display: block;
    transform: scale(1);
    transition: transform 200ms ease-in-out;
}

.menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    color: lightgray;
    background-color: black;
    padding: 0.25em;

}
.menu-item:hover {
    color: black;
    background-color: lightgray;
    cursor: pointer;
}

.signup-link {
    color: black !important;
    font-weight: bold;
}

.deletable {
    border: 0;
}

ul.room {
    height: 1px;
    max-height: 100%;
    overflow-y: auto;
    padding: 0.25rem !important;
    border-radius: 0.25rem !important;
    flex: 1 1 auto !important;
    margin: 0;
}

ul.room > li {
    display: flex;
    flex-direction: column;
    padding-left: 0.25em;
}

ul.room > li > .username {
    font-weight: bolder;
    cursor: pointer;
}

ul.room > li > .mention {
    font-weight: bolder;
}

ul.room > li > .msg {
    flex-grow: 1;
    border-bottom: 1px dotted #415A77 !important;
}

ul.room > li > .hdr {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
}

ul.room > li > .hdr > .admin > button {
    border: 0;
}

ul.room > li > .hdr > .admin > code {
    color: white;
    font-size: xx-small;
    vertical-align: text-top;
}

.ptro-bar {
    left: 0
}
