.phone {
    height: 725px;
    background-image: url(https://munchkin.ai/assets/img/iphone-in-hand.png);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
  
#chat-container {
    height: 619px;
    width: 275px;
    background-color: #f5f5f5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 26% 0% 17% 32%;
}
  
  #chat-area {
    flex-grow: 1;
    padding: 15px;
    overflow-y: scroll;
  }
  
.chat-message {
    max-width: 100%;
    padding: 8px 15px;
    margin-bottom: 8px;
    border-radius: 18px;
    font-size: 16px;
    line-height: 1.4;
    white-space: pre-wrap;
}
  
.chat-message.sender {
    background-color: #34c759;
    color: #FFFFFF;
    align-self: flex-end;
    border-bottom-right-radius: 3px;
    margin-left: 20px;
}
  
.chat-message.receiver {
    background-color: #FFFFFF;
    color: #000000;
    align-self: flex-start;
    border-bottom-left-radius: 3px;
}
  
  #message-form {
    display: flex;
    background-color: #F0F0F0;
    padding: 10px;
    align-items: center;
  }
  
  #message-input {
    flex-grow: 1;
    border: none;
    border-radius: 18px;
    padding: 8px 15px;
    outline: none;
  }
  
  button {
    background-color: #0B93F6;
    color: #FFFFFF;
    font-size: 16px;
    border: none;
    border-radius: 18px;
    padding: 8px 15px;
    margin-left: 0px;
    cursor: pointer;
  }

.input-area {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 10px;
    width: 250px;
    justify-content: space-around;
}

.text-box {
    flex-grow: 1;
    border: none;
    border-radius: 20px;
    padding: 10px;
    outline: none;
    font-family: 'Lato', sans-serif;
}
  
  .send-btn {
    background-color: #34c759;
    border: none;
    border-radius: 50%;
    padding: 7px;
    cursor: pointer;
}

.arrow-up-circle {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #ffffff;
    transform: rotate(45deg);
}
.gg-arrow-up-o {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 2px solid;
    transform: scale(var(--ggs,1));
    border-radius: 20px;
}
.gg-arrow-up-o::after, .gg-arrow-up-o::before {
    content: "";
    display: block;
    /* box-sizing: border-box; */
    position: absolute;
    top: 4px;
}
.gg-arrow-up-o::after {
    width: 6px;
    height: 6px;
    border-top: 2px solid;
    border-left: 2px solid;
    transform: rotate(45deg);
    left: 6px
}
.gg-arrow-up-o::before {
    width: 2px;
    height: 13px;
    left: 8.5px;
    background: currentColor;
}


@media only screen and (min-width: 320px) and (max-width: 768px){
#chat-container {
    height: 629px;
    width: 275px;
    background-color: #f5f5f5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 30% 10% 18% 11%;
}
.phone {
    height: 650px;
    background-image: url(https://munchkin.ai/assets/img/iphone_white_interface.png);
    border-radius: 30px;
    display: flex;
    flex-direction: column-reverse;
}
}