
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    border: 2px solid #dedede; /* Border similar to original */
    background-color: #facc15;
    border-radius: 20px; /* Rounded corners */
    padding: 10px; /* Padding for content */
    margin: 10px auto; /* Centered with margin */
    width: 80%; /* Width of the container */
    text-align: right;
}

.darker {
    border: 2px solid #dedede; /* Border similar to original */
    background-color: #b98c069a; 
    border-radius: 20px; /* Rounded corners */
    padding: 10px; /* Padding for content */
    margin: 10px auto; /* Centered with margin */
    width: 80%; /* Width of the container */
    text-align: left;
}

h1 {
    text-align: center;
    color: #b4ffff;
    font-family: "Braah One"; 
    font-size: 50px;
    font-weight: bold;
    text-shadow: 3px 3px 3px #ababab;

}

p {
    text-align: center;
    color: #b4ffff;
    font-family: "Playwrite ID" , sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 3px 3px 3px #ababab;
}
#chatbox {
    height: 250px;
    border: 1px solid #ccc;
    padding: 10px;
    /*overflow-y: scroll;*/
    overflow-y: auto;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 20px;
}

#userInput {
    width:70%;
    padding: 10px;
    border-radius: 20px;
   
}

button {
    padding: 10px;
    border-radius: 20px;
    background-color: #b4ffff;
    font-family: "Braah One"; 
    color: #696464;
    text-shadow: 3px 3px 3px #a7a4a45e;
}

.avatar {
    width: 60px; /* Set the width to match W3Schools */
    height: 60px; /* Set the height to maintain aspect ratio */
    border-radius: 50%; /* Make it circular */
    margin-right: 20px; /* Space between the avatar and text */
}

#userInput:focus {
    border: 2px solid yellow; /* Change border color to yellow */
    outline: none; /* Remove default outline */
}







body {
    font-family: "Lato", sans-serif;
  }
  
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    /*background-color:#73e4e6;*/
    background-color:#26d5d8;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    border-radius: 20px;
    
   
  }
  
  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 13.5px;
    color: #FFFFFF;
    display: block;
    transition: 0.3s;
    
  }
  
  .sidenav a:hover {
    color: #f1f1f1;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

  
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 11px;}
    .sidenav a {font-size: 18px;}
  }
  h6 {
  font-family: 'Silkscreen';font-size: 22px;
  color:#00CED1;
  font-weight: bold;
  
  
  }
  h6:hover {
  color:#FF69b4; 
  }