/* Global */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
 // background-color: #f0fff4;
  color: #1a202c;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE 10 and IE 11 */
  user-select: none;  
}
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to top, #c9d2f9, #f1cacadb, #fae6b9); /* Sunset ocean colors */
    height: 100vh;
    font-family: sans-serif;
    overflow-x: hidden;
  }

  /* This container sits behind everything */
  .bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Background layer */
    pointer-events: none; /* Allows you to click things 'through' the bubbles */
  }

  /* The Content Layer */
  .content {
    position: relative;
    z-index: 10; /* High z-index to stay on top */
  //  text-align: center;
  //  padding-top: 20vh;
  }

  .bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
    animation: floatUp 10s infinite linear;
  }

  @keyframes floatUp {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    90% {
      opacity: 1;
    }
    100% {
      transform: translateY(-120vh);
      opacity: 0;
    }
  }

  /* Individual bubble settings (Size, Position, Speed) */
  .b1 { left: 10%; width: 50px; height: 50px; animation-duration: 8s; }
  .b2 { left: 20%; width: 20px; height: 20px; animation-duration: 12s; animation-delay: 1s; }
  .b3 { left: 35%; width: 60px; height: 60px; animation-duration: 10s; animation-delay: 2s; }
  .b4 { left: 50%; width: 30px; height: 30px; animation-duration: 14s; }
  .b5 { left: 65%; width: 80px; height: 80px; animation-duration: 18s; animation-delay: 3s; }
  .b6 { left: 80%; width: 40px; height: 40px; animation-duration: 11s; }
  .b7 { left: 90%; width: 25px; height: 25px; animation-duration: 9s; animation-delay: 5s; }
  .b8 { left: 25%; width: 45px; height: 45px; animation-duration: 13s; animation-delay: 4s; }
  .b9 { left: 75%; width: 15px; height: 15px; animation-duration: 7s; }
  .b10 { left: 45%; width: 55px; height: 55px; animation-duration: 15s; animation-delay: 2s; }
  
  
  body {
        margin: 0px;
        padding: 0px;
        font-family: 'Montserrat', sans-serif;
        width: 99%;
      }
      header {
        background-color: #076e3b;
        position: fixed;
        top: 0px;
        color: white;
        padding: 15px 0px;
        display: grid;
        width: 100%;
        text-align: center;
        padding-left: 2%;
        grid-template-columns: 13% 70%;
      }
      .menu-img {
        height: 20px;
        width: 27px;
      }
      .title {
        font-weight: bold;
        font-size: 24px;
      }
      .foot {
      width: 100%;
      background-color: #076e3b;
      position: fixed;
      bottom: 0px;
      display: grid;
      padding-left: 2%;
      padding-top: 10px;
      padding-bottom: 20px;
      padding-right: 2%;
      grid-template-columns: 13% 66% 13%;
      column-gap: 2%;
    }
    .foot input {
      color: #05450e;
      font-weight: bold;
      font-size: 15px;
      border: none;
      outline: none;
      padding: 10px;
      border-radius: 50px;
    }
    .foot button {
      border-radius: 50px;
      font-size: 16px;
      font-weight: bold;
      color: tomato;
    }
    .foot span {
      padding-top: 2px;
      font-size: 30px;
      text-align: center;
    }
    /* Container for the messages */
#message-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msg-sent { align-self: flex-end; background-color: #076e3b; color: white; border-radius: 15px 15px 0 15px; margin-top: 5px; margin-bottom: 5px;
margin-left: 20%; padding: 5px;}

.msg-received { margin-top: 5px; margin-bottom: 5px; margin-left: 5px; align-self: flex-start; background-color: tomato; color: #fff; border-radius: 15px 15px 15px 0; padding: 5px; margin-right: 20%; }


.space {
  height: 65px;
}