body {
    height: 100vh;
    margin: 0 10px;
    background-image: linear-gradient(130deg, rgb(252, 252, 252), rgb(124, 255, 255));
}

.logo {
    display: block;
    margin: auto;
    padding-top: 10px;
    width: 60px;
    height: 60px;
}

h1 {
    margin-top: 12px;
    font-size: 20px;
    font-family: 'Segoe UI', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.appName {
    color:rgb(0, 193, 207);
}

.container {
    max-width: 955px;
    border: 2px solid rgb(0, 193, 207);
    margin: auto;
    height: 60vh;
    padding: 33px;
    overflow-y: auto;
    margin-bottom: 23px;
}

.message {
    background-color: rgb(0, 193, 207);
    color: white;
    max-width: 40%;
    padding: 10px;
    margin: 17px 12px;
    border: 2px solid rgb(0, 171, 184);
    border-radius: 10px;
}

.left {
    float: left;
    clear: both;
}

.right {
    float: right;
    clear: both;
}

#send-container {
    margin: auto;
    text-align: center;
    max-width: 1085px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#messageInp {
    width: 70%;
    border: 2px solid rgb(0, 193, 207);
    border-radius: 6px;
    height: 34px;
    font-size: 22px;
    color: rgb(1, 151, 161);
}

#emojiSug {
    width: 5%;
    border: 2px solid rgb(0, 193, 207);
    border-radius: 20px;
    padding: 9px;
    text-align: center;
    background-color: white;
    color: rgb(1, 151, 161);
}

.btn {
    width: 15%;
    cursor: pointer;
    border: 2px solid rgb(0, 193, 207);
    border-radius: 6px;
    height: 34px;
    color: rgb(0, 193, 207);
    font-weight: 700;
    background-color: white;
}

#messageInp:focus {
    outline: none;
    border-color: rgb(0, 193, 207);
}

.btn:hover {
    color: white;
    border-color: white;
    background-color: rgb(0, 193, 207);
}

.highlightMsg {
    color: rgb(0, 139, 163);
    font-weight: 800;
}

#emojiSug:hover {
    border-color: white;
    cursor: pointer;
}
::-webkit-scrollbar-track {
    background-color: transparent;
  }
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: rgb(0, 193, 207);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgb(1, 160, 172);
}