
html, body {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #0E0E0E;
    color: #FFF;
    line-height: 1.42857143;
    overflow: hidden;
}

a {
    text-decoration: none;
}

hr.solid {
    border-top: 1px solid #bbb;
    width: 100%;
    margin: 15px 0;
}

.main {
    position: relative;
    width: 100vw;
    height: 100%;
    display: flex;
}

.rightMenu {
    position: relative;
    align-items: center;
    flex-direction: column;
    display: flex;
    flex-shrink: 0;
    width: 230px;
    height: 100%;
    padding: 10px 0;
    background-color: #171717;
    overflow-x: hidden;
    text-align: center;
    text-align: -moz-center;
    text-align: -webkit-center;
    scrollbar-width: none;
    z-index: 999;
}

.rightMenu > * {
    flex-shrink: 0;
}

#datepicker {
    line-height: 1.9;
}

.log {
    background-color: #0E0E0E;
    width: 100%;
    height: 100%;
    margin-left: 3px;
    overflow-x: hidden;
    word-break: break-word;
    color: #FFF;
    position: relative;
}


.message {

}


.timestamp {
    color: #7A7A7A;
}

a.username {
    font-weight: bold;
    color: #FFF09A;
    transition: filter 100ms linear;
}

a.username:hover {
    filter: brightness(60%);
}

a.osulink {
    text-decoration: none;
    background-color: #284779;
    text-shadow: 1px 1px black;
    color: white;
    transition: background-color 100ms linear;
}

a.osulink:hover {
    color: white;
    background-color: #ADD8E6;
}

.content {

}

.log .center {
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.log .icon {
    position: relative;
    top: 10%;
    transform: translateY(-10%);
}

.menuButton {
    position: absolute;
    top: 5px; left: 5px;
    opacity: 0.5;
}

.menuButton:hover {
    opacity: 1;
    transition: opacity 100ms linear;
}
.scrollable-menu {
    height: auto;
    width: 100%;
    max-height: 240px;
    overflow-x: hidden;
    overflow-y: auto;
}

.search-wrapper {
    width: 200px;
}

.search-go-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: #0d6efd;
    border: 0;
    border-radius: 0 4px 4px 0;
    color: #fff;
    padding: 0 8px;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.search-go-btn:hover {
    background: #0b5ed7;
    color: #fff;
}

#myInput {
    padding-right: 40px !important;
}

.channel-select-input {
    width: 200px;
    height: 42px;
    font-size: 15px;
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
    cursor: pointer;
}

.channel-select-input:focus {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
    outline: 0;
    cursor: text;
}

.channel-select-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 600px){
    .rightMenu {
        position: absolute;
    }
}

