* {
  font-family: "Poppins";
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}



:root{
  --color-primary-1: rgba(4,3,43, 1);
  --color-primary-2: rgba(4,3,43, 0.8);
  --color-primary-3: rgba(4,3,43, 0.6);
  --color-primary-4: rgba(4,3,43, 0.4);
  --color-primary-5: rgba(4,3,43, 0.2);
  --color-secondary-1: rgba(45, 201, 151, 1);
  --color-secondary-2: rgba(45, 201, 151, 0.8);
  --color-secondary-3: rgba(45, 201, 151, 0.6);
  --color-secondary-4: rgba(45, 201, 151, 0.4);
  --color-secondary-5: rgba(45, 201, 151, 0.2);
  --color-white: rgba(255, 255, 255, 1);
  --color-white-1: rgba(255, 255, 255, .8);
  --color-white-2: rgba(255, 255, 255, .6);
  --color-white-3: rgba(255, 255, 255, .4);
  --color-black: #000;
  --color-link: rgba(10, 255, 255, 1);
  --color-logo-1: rgba(225,31,38, 1);
  --color-logo-2: rgba(51, 52, 51, 1);

}
/* Background colors */
.bg-primary {
  background-color: var(--color-primary-1) !important;
  color: var(--color-white) !important;
}

.bg-secondary {
  background-color: var(--color-secondary-1) !important;
  color: var(--color-white);
}

/* Colored text */
.text-primary {
  color: var(--color-primary-1) !important;
}

.text-secondary {
  color: var(--color-secondary-1) !important;
}

/* logo colours */
.text-logo-1 {
  color: var(--color-logo-1) !important;
  font-weight: 900 !important;
}

.text-logo-2 {
  color: var(--color-logo-2) !important;
  font-weight: 900 !important;
}

.navbar a{
  color: var(--color-white);
}


.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

img {
  user-select: none !important;
  pointer-events: none !important;
}
#app img {
  max-height: 40vh;
}

.btn-graphene {
  font-weight: bolder;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background-color: rgba(173, 220, 203);
  color: #000;
  border: 2px solid #addccb;
}

.btn-graphene:hover,
.btn-graphene:active,
.btn-graphene:focus {
  background-color: rgba(173, 220, 203, 0.3);
  border: 2px solid #addccb;
  color: #000;
}

.navbar * {
  user-select: none !important;
}

body {
  overflow-x: hidden;
  background: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}


.examples button {
  font-size: 14px;
}

.conversations {
  margin-bottom: 200px;
}

.conversation .role {
  font-size: 14px;
}
.conversation .message {
  border-radius: 10px;
  padding: 2%;
  white-space: pre-wrap;
  user-select: text;
  overflow-x: auto;
}

.bg-ai {
  background-color: var(--color-secondary-1);
}
.bg-you {
  background-color:var(--color-secondary-2);
  color: #000;
}

.btn-clear {
  color: #545454;
  border: 1px solid #545454;
  background-color: #fff;
}

.prompt {
  height: 50px;
  resize: none;
  z-index: 1;
  min-width: 80vw;
  max-height: 100px;
  padding-top: 12px;
  padding-left: 4% !important;
  padding-right: 8% !important;
}

.chatIcon{
  position: relative;
  left: 40px;
  top: 10px;
  z-index: 2;
}

.send {
  position: relative;
  right: 60px;
  z-index: 2;
  transform: rotate(45deg);
}

.disclaimer {
  font-size: 12px;
}

footer{
  --bs-bg-opacity: 1;
    /*background-color: var(--color-primary-4);*/
    backdrop-filter: blur(1px);
}

.prompt::-webkit-scrollbar {
    width: 0px; 
}

@media screen and (min-width: 1920px) {
  .prompt {
    min-width: 70vw;
  }
}

@media screen and (max-width: 991px) {
  footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

}
@media screen and (max-width: 576px) {
  footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .prompt {
    min-width: 92vw;
  }
}