.chat::-webkit-scrollbar {
    width: 10px;
}

.chat::-webkit-scrollbar-track {
    background: white;
}

.chat::-webkit-scrollbar-thumb {
    background-color: white;
}

.chat {
    scrollbar-width: thin;
    scrollbar-color: white white;
}

.chat::-webkit-scrollbar-button {
    display: none;
}

.red_btn {
    background-color: crimson;
    border-color: crimson;
}

.menu-overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 8%;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
}

/* Position the content inside the overlay */
.menu-overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* Style the navigation links inside the overlay */
.menu-overlay a {
    padding: 8px;
    text-decoration: none;
    text-underline-offset: 0.5em;
    font-size: 1em;
    color: #818181;
    display: block;
    transition: 0.3s;
}

/* Change link color on hover */
.menu-overlay a:hover, .menu-overlay a:focus {
    color: black;
    text-decoration: underline;
}

/* Position the close button (top right corner) */
.menu-overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

.user-message {
    text-align: right;
}

.gemmy-message {
    text-align: left;
}

.centered-div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.text-m {
    margin: 0;
    padding: 0;
    color: black;
    font-size: 1em;
}

.text-l {
    margin: 0;
    padding: 0;
    color: black;
    font-size: 1.5em;
}

.text-s {
    margin: 0;
    padding: 0;
    color: black;
    font-size: 0.75em;
}

.text-xs {
    margin: 0;
    padding: 0;
    color: black;
    font-size: 0.68em;
}

.radio {
    font-size: 0.8em;
    color: black;
    padding: 0;
    margin: 0;
}

.btn-thin {
    height: 35px;
    max-height: 35px;
    border-radius: 30px;
    padding: 0;
    background-color: black;
    color: white;
    font-size: 0.75em;
}

.btn-thick {
    border-radius: 30px;
    background-color: black;
    color: white;
    font-size: 1em;
}

.input-thin {
    height: 40px;
    max-height: 40px;
    font-size: 0.75em;
    background-color: white;
    border-radius: 30px;
    padding: 0 20px;
}

.center-text-page {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    margin: 20px auto;
    padding: 0 20px;
}