body, html {
    background: #F8F8FA;
}

button {
    color: inherit; /* Or specify a specific color like #000000 */
}

.chat-bottom {
    display: grid;
    grid-template-columns: auto 50px;
}

#send-btn {
    width: 50px;
    height: 50px;
    color:#fff;
    border-radius: 50%;
    background-color: #222;
    justify-items: center;
    align-items: center;
    text-align: center;
    border:2px solid #999
}

#chat-holder1 {
    display: unset;
    box-sizing: border-box;
    grid-template-rows: 1fr 40px;
    border-radius: 0;
}

.chat-section {
    display: block;
    padding: 0 10px;
}

#staff {
    display: none;
}

.app-wrapper {
    padding: 0;
    margin: 0;
    background: transparent;
}

#chat-messages {
    min-height: 90dvh;
    margin-bottom: 10px;
    padding-top: 80px;
}

.mobile-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    border-top:1px solid #ccc;
    justify-items: center;
    align-items: center;
    height: 50px;
    background-color: #fff;
}

.chat-bubble {
    max-width: unset;
}

.mobile-menu > button {
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
   
}

.mobile-navbtn{
    border:none;
    background: none;
}

.mobile-navbtn.selected img {
    filter: invert(69%) sepia(54%) saturate(5349%) hue-rotate(316deg) brightness(106%) contrast(109%);
}

#chat-sidebar {
    padding: 0 5px;
}

#chat-holder {
    margin: 0 5px;
    gap:20px;
}

.opened {
    display: block !important;
}

.newnav {
    display: none;
}

.arrow {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: background-color 500ms ease;
    cursor: pointer;
    user-select: none;
    height: 60px;
    width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: fixed; left: 20px; top: 20px
}