body {
  margin: 0;
  font-family: monospace;
  background: url("../static/images/slider.jpg");
  background-position: center;
  background-repeat: no-repeat;

}

#header {
  display: flex;
  justify-content: space-around;
  background-color: #f19e6ad2;
  /* border-radius: 5px; */
  text-align: center;
  /* margin: 5px; */
  padding: 10px;
}

.button {
  margin-right: 10%;
  padding: 7px 10px;
  border-radius: 5px;
  background-color: white;
  cursor: pointer;
  border: 1px solid black;
}

.headerImage {
  width: 12%;
  margin-left: 5%;
}

.appName {
  color: white;
  margin-top: 10px;
  font-size: 20px;
  font-weight: bold;

}

.description-heading {
  text-align: center;
  font-size: large;
  position: sticky;
}

#footer {
  background-color: transparent;
  text-align: center;
  /* padding: 10px; */
  position: fixed;
  bottom: 0;
  width: 100%;
}


#chatbox {
  overflow-y: auto;
  height: calc(100vh - 200px);
  width: 38%;
  margin: 0 auto;
  /* padding: 10px; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
}

#chatbox::-webkit-scrollbar {
  display: none;
}

.message-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 10px;
}

.userText {
  align-items: flex-end;
  background-color: #FF9351;
  padding: 10px;
  border-radius: 5px;
  font-family: 'Helvetica';
  font-size: 12px;
  color: white;
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}

.userText span {
  padding: 10px;
  border-radius: 5px;
}

.botText {
  text-align: left;
  align-items: start;
  justify-content: left;
  background-color: #00C2CB;
  padding: 10px;
  border-radius: 5px;
  font-family: 'Helvetica';
  font-size: 12px;
  color: white;
  margin-left: 0;
  margin-right: auto;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
}


.botText span {
  padding: 10px;
  border-radius: 5px;
}

#userInput {
  width: 100%;
  /* Adjust the width of the input field */
  padding: 10px;
}


#nameInput {
  width: 38%;
  padding: 15px;
  border-radius: 10px;
}

footer {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  background-color: transparent;
  padding-left: 5px;
  padding-right: 5px;
}

.policy {
  width: 60%;
  text-align: left;
}

footer a {
  text-decoration: none;
  color: rgb(4, 79, 253);
}

#openFooterPopup {
  border: none;
  background-color: transparent;
  color: rgb(4, 79, 253);
  cursor: pointer;
  margin-left: -5px;
  margin-right: -5px;
}

/* Popup container styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow-y: auto;
}

/* Popup content styles */
.popup-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 850px;
}

.close {
  position: relative;
  top: -10px;
  left: 400px;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  font-size: 30px;
}

.close:hover {
  color: #000;
}

form {
  display: grid;
  gap: 15px;
  margin-left: 50px;
  margin-top: 20px;
}

.flex {
  display: flex;
  width: 93%;
  gap: 30px;
}

#input-text,
input[type="email"] {
  width: 90%;
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
}

#input-text,
input[type="email"]:focus {
  outline: none;
}

input::placeholder {
  /* color: #04AA6D;  */
}

label {
  font-size: 12px;
}

select {
  height: 40px;
}

option {
  border-radius: 0px;
}

textarea {
  resize: none;
  height: 100px;
  overflow-y: auto;
  width: 91%;
  padding: 5px;
  border-radius: 5px;
}

textarea:focus {
  outline: none;
}

button[type="submit"] {
  background-color: #000;
  color: #fff;
  padding: 10px 11px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  width: 90%;
}

button[type="submit"]:hover {
  background-color: rgb(37, 36, 36);
}

.container {
  display: block;
  position: relative;
  padding-left: 28px;
  padding-right: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container a {
  text-decoration: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #eee;
}

.container:hover input~.checkmark {
  background-color: #ccc;
}

.container input:checked~.checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked~.checkmark:after {
  display: block;
}

.container .checkmark:after {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}