h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgb(54, 113, 181);
  font-weight: 600;
  margin-left: 8%;
}

.box h1 {
    padding-top: 3%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f0f0f0;
    font-size: large; /* or any other value */
    font-family: Arial, sans-serif; /* or any other font */
    font-weight: normal; /* or normal */
    color: black; /* or any other color */
    margin: 5% auto;
}

.top-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    height: 50px;
    gap: 3%;
}

.bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    height: 100px;
    gap: 3%;
}

.bottom-nav-1 {
    display: flex;
    margin-left: 20px;
    gap: 10%;
}

.bottom-nav-2 {
    display: flex;
    margin-right: 20px;
    line-height: 180%;
}

p.copyright {
    display: flex;
    justify-content: center;
}

.text {
    color: black; /* or any other color */
    background-color: white; /* or any other color */
}
  

#container {
    width: 80%;
    margin: 0 auto;
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 20px;
}

#chatbox {
    height: 400px;
    overflow-y: scroll;
    border: 1px solid rgb(226, 226, 226);
    background-color: #d0d0d0;
    padding: 10px;
}
/*
#chatbox:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1);
}
*/
#input {
    width: 80%;
    height: 40px;
    border: 1px solid #ccc;
    padding: 10px;
}

#send {
    width: 15%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background-color: blue;
    color: white;
    font-size: large;
    font-weight: normal;
}

#send:hover {
    background-color: white;
    color: blue;
    border-color: blue;
    border-width: 3px;
}

/* Style the chat messages with border radius and box shadow */
#chatbox {
    margin: 10px 0;
    color: rebeccapurple;
}

.user {
    color: blue;
    font-weight: normal;
}

.bot {
    color: green;
    font-weight: normal;
}

input {
    border-radius: 10px; /* or 10% */
    border-style: solid;
    border-color: lightslategray;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1); /* or any other values */
    width: 60%;
    height: 50px;
    margin: 15px;
    font-size: large;
}

/* Add some margin to the page */
body {
    margin: 20px;
}

/* Center the container div */
#conversation {
    margin: 0 auto;
}

/* Style the lists without bullet points */
ul {
    list-style: none;
}

/* Style the nav to horizontal */
nav {
    display: flex;
    align-items: center;
}

/* Style the nav links */
nav a {
    color: blue;
    text-decoration: none;
    padding: 10px;
}

/* Style the nav links on hover */
nav a:hover {
    color: white;
    background-color: blue;
}

/* Choose accessible contrast colors for hover, links, boxes, etc. */
/* You can use tools like Color Contrast Checker or WebAIM Contrast Checker to check the contrast ratio */
/* For example, blue and white have a contrast ratio of 8.59:1, which meets the WCAG AAA standard */

/* Style the chatbot messages with border radius and box shadow */
.chatbot-message {
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* Differ the user input from the chatbot response with different background colors */
.user-text {
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.bot-text {
    background-color: #e0e0e0;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* Make the text bigger and more legible with font size, font family, and font weight */
.text {
    font-size: large;
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* Style the boxes with border styles */
.chatbox {
    border-style: solid;
    border-width: 2px;
    padding: 10px;
}

/* Style the send button on hover */
.send:hover {
    background-color: white;
    color: blue;
    cursor: pointer;
}

/* Style the boxes with border radius and box shadow */
.box {
    border-style: solid;
    border: 3px solid #ccc;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.user-message {
    color: orangered;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    font-size: large;
    padding: 10px;
    font-weight: normal;
    text-align: right;
    width: fit-content;
    height: fit-content;
    margin-right: 10px;
    margin-left: auto;
    margin-bottom: 10px;
    padding: 5px;
    justify-self: right;
    display: flex;
    border-radius: 10px;
}
  
.chatbot-message {
    color: black;
    background-color: lightgray;
    font-family: Arial, sans-serif;
    font-size: large;
    text-align: left;
    padding: 10px;
    font-weight: normal;
    width: fit-content;
    height: fit-content;
    margin-left: 10px;
    margin-right: auto;
    margin-top: 10px;
    padding: 5px;
    justify-content: left;
    border-radius: 10px;
}

.user-message::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url("https://cdn-icons-png.flaticon.com/128/3177/3177440.png");
    background-size: cover;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: 20px;
    padding: 10px;
    justify-self: left;
}

.chatbot-message::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url("https://cdn-icons-png.flaticon.com/128/11773/11773650.png");
    background-size: cover;
    border-style: solid;
    border-width: 1px;
    border-color: #fff;
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 20px;
}