#inbox {
    align-items: center;
    min-width: 700px;
    max-width: 700px;
}
#search-users {
    align-items: center;
    min-width: 700px;
    max-width: 700px;
}
#inbox-container, #search-container {
    background: white;
    border: 1px solid #888888!important;
    box-sizing: border-box;
    justify-content: center;
    margin-bottom: 10px;
    padding:0px;
    width: 100%;
}
#inbox-header, #search-header {
    background: #0066CC;
    border-bottom: 1px solid #888888!important;
    color: white;
    font-size: 16px;
    padding: 6px 0;
}
#search-toolbar {
    border-bottom: solid 1px #888888;
    display: flex;
    justify-content: initial;
    padding: 6px 0;
}
#inbox-search {
    display: flex;
    margin-left: 5px;
}
#inbox-search-text {
    width: 200px;
}
#page-controls {
    align-items: center;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}
#inbox-sub-header, #search-sub-header {
    background: #AAAAAA;
    color: #666666;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 0;
    text-align: center;
    width: 100%;
}
#inbox-sub-header-table, #search-sub-header-table {
    display: flex;
    flex-direction: row;
}
#inbox-content, #search-content {
    display: flex;
    flex-direction: column;
}
.inbox-list-rows, .search-list-rows {
    display: flex;
    flex-direction: row;
    justify-content: initial;
}
.inbox-list-rows span, .search-list-rows span {
    border-bottom: solid 1px #888888;
    /* border-right: solid 1px #888888; */
    display: block;
    width: 100%;
}
#inbox-no-results, #search-no-results {
    align-items: center;
    border-bottom: none;
    border-right: none;
    display: flex;
    justify-content: center;
    min-height: 24px;
    max-width: 695px;
}
#inbox-new-icon {
    left: 40px;
    position: absolute;
}
.message-options {
    align-items: center;
    background-color: rgb(191, 237, 255);
    border-bottom: solid 1px #888888;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    height: 100%;
    justify-content: center;
    min-width: 100px;
    width: 50%;
}
.message-options img {
    margin-left: 10px;
}
.message-options span {
    margin-left: -10px;
}
.inbox_convo_options {
    align-items: center;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
}
#inbox-export-convo {
    background-color:rgb(249, 250, 200);
}
#new-convo {
    background-color:rgb(193, 255, 208);
}
.search-buttons:hover {
    filter: brightness(90%);
}
#search-results {
    border: solid 1px #000000;
    display: flex;
    flex-direction: column;
    max-height: 250px;
    max-width: 198px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: absolute;
    white-space: nowrap;
    width: 100%;
    z-index: 100;
}
#search-results div {
    align-items: center;
    background-color: #0066CC;
    border-bottom: solid 1px #AAAAAA;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    height: 100%;
    justify-content: initial;
    left: 0px;
    min-height: 24px;
    padding-left: 10px;
    width: 100%;
}
#search-results div:hover {
    filter: brightness(90%);
}
#dot-icon {
    max-height: 6px;
    max-width: 6px;
    height: 100%;
    width: 100%;
    border: solid 1px #000000;
    border-radius: 50%;
    display: inline-block;
}
.dot-green {
    background-color: rgb(29, 216, 75);
}
.dot-red {
    background-color: red;
}
.dot-gray {
    background-color: gray;
}
.main-chat-inbox {
    padding-right: 6px;
}
#chat-new-icon {
    margin-bottom: 3px;
    position: relative;
}
#chat-header-name {
    color: #FFFFFF;
    font-weight: normal;
    text-decoration: underline;
}
#chat-header-name:hover {
    filter: brightness(90%);
}