body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  user-select: none;
}

a {
  text-decoration: none;
}

.cover-image-template {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
}
.container-body {
  height: 100vh;
  width: 100%;
  position: absolute;
  background-image: url(../icons/11002.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: 0.5s ease-in-out;
  transform-origin: center, center;
}

.school-icon {
  height: 50px;
  width: 50px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  position: absolute;
  left: 5%;
  top: 5%;
  background-color: rgba(255, 254, 254, 0.959);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid #6affad;
  background-image: url("https://res.cloudinary.com/dqtyu2frf/image/upload/v1739039852/freepik-professional-minimalist-fire-logo-202502081834327mZ7_jlhsq4.png");
}

.home-widget {
  height: 45%;
  width: 50%;
  background-color: #ffffff13;
  position: absolute;
  top: 50%;
  left: 5%;
  min-width: 520px;
  min-height: 300px;
  transform: translateY(-50%);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.329);
  transition: 0.5s ease-in-out;
}

.bot-image {
  height: 120px;
  width: 90px;
  position: absolute;
  background-image: url(../icons/39-512.png);
  top: -50px;
  left: 20px;
}

.money-icon {
  height: 150px;
  width: 150px;
  position: absolute;
  background-image: url(../icons/mon2.png);
  top: -70px;
  left: -20px;
  transform: rotate(-40deg);
}

.progress-button {
  height: 40px;
  width: fit-content;
  background-color: #6affad;
  position: absolute;
  bottom: -40px;
  right: 30px;
  border-radius: 5px;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  display: none;
  border: 1px solid #6affad;
  transition: bottom 0.6s ease, opacity 0.6s ease;
  overflow: hidden;
}

#intro-txt {
  position: absolute;
  height: fit-content;
  color: white;
  top: 15%;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
}
#txtmain {
  position: absolute;
  height: fit-content;
  color: white;
  top: 15%;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
}

.desktop-landing-footer {
  height: fit-content;
  width: 90%;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: rgb(252, 248, 248);
  font-size: 14px;
  text-align: center;
  background-color: #ffffff25;
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.658) 47%,
    rgba(255, 255, 255, 0) 100%
  );
  margin-left: 0 !important;
  word-spacing: 10px;
}

#promp-txt {
  position: absolute;
  height: fit-content;
  color: white;
  top: 15%;
  width: 75%;
  left: 15%;
}

.budget-widget {
  height: 45%;
  width: 50%;
  background-color: #ffffff13;
  position: absolute;
  top: 50%;
  left: 5%;
  min-width: 520px;
  min-height: 300px;
  transform: translateY(-50%) scale(0.5);
  opacity: 0;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.329);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  display: none;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: absolute;
  top: 35%;
  left: 15%;
  opacity: 0;
  color: white;
}

label {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.price-input {
  width: 100%;
  padding: 8px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
  background-color: transparent;
  color: white;
}

.price-input:focus {
  border-color: white;
}

.input-value {
  font-size: 1rem;
  color: white;
}

button {
  outline: none;
  cursor: pointer;
  border: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  letter-spacing: 0.05rem;
  font-size: 17px;
  border-radius: 500px;
  overflow: hidden;
  background: #6affad;
  color: ghostwhite;
}

button span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
}

button:hover span {
  color: black;
}

button::before,
button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

button::before {
  content: "";
  background: #272626;
  width: 120%;
  left: -10%;
  transform: skew(30deg);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

button:hover::before {
  transform: translate3d(100%, 0, 0);
}

.prompt-widget {
  height: 45%;
  width: 50%;
  background-color: #ffffff13;
  position: absolute;
  top: 50%;
  left: 5%;
  display: none;
  min-width: 520px;
  min-height: 300px;
  transform: translateY(-50%) scale(0.5);
  opacity: 0;
  border-radius: 20px;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.329);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  overflow: hidden;
}

#prompt-container {
  padding: 20px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#question-text {
  font-size: 1.1em;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#options-container {
  margin-top: 20px;
  display: none;
}

.option {
  background-color: #ffffff23;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.option:hover {
  background-color: #ffffff40;
}

#next-button {
  height: 40px;
  width: fit-content;
  background-color: #6affad;
  position: absolute;
  bottom: -40px;
  right: 30px;
  border-radius: 5px;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  border: 1px solid #6affad;
  transition: bottom 0.6s ease, opacity 0.6s ease;
}

.main-widget {
  height: 70%;
  width: 60%;
  background-color: #ffffff13;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 620px;
  min-height: 400px;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.329);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  display: none;
}

.nav-btn-container {
  position: absolute;
  top: 2%;
  right: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  padding: 10px 15px;
  border-radius: 8px;
}

.nav-btn {
  padding: 8px 12px;
  background-color: #ffffff42;
  color: white;
  backdrop-filter: blur(5px);
  border: 1px solid #ffffff42;
  border-radius: 5px;
  cursor: pointer;
  transition: width 0.3s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
}

.nav-btn.order {
  width: fit-content;
}

.icon {
  color: #6affad;
  margin-right: 5px;
}

.nav-btn.order:hover::after {
  content: ": see and order variety of meals in store";
}

.chat-container {
  height: calc(80% - 70px);
  padding: 20px;
  overflow-y: scroll !important;
  width: calc(100% - 55px) !important;
  position: absolute;
  bottom: 70px;
  top: 5%;
  background-color: rgba(63, 55, 56, 0);
}

.ai-message {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.ai-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.message-content {
  padding: 15px 20px;
  border-radius: 15px;
  max-width: 80%;
  backdrop-filter: blur(5px);
  background: transparent;
}

.meal-response {
  color: #fff;
  line-height: 1.6;
}

.meal-response h3 {
  margin: 0 0 15px 0;
  font-size: 1.2em;
  color: #7fffd4;
  white-space: nowrap;
}

.meal-items {
  list-style: disc !important;
  padding: 0;
  margin: 0 0 15px 0;
}

.meal-items li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.price-summary {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.action-buttons {
  position: absolute;
  height: 55px;
  bottom: 20px;
  display: flex;
  gap: 15px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0);
}

.action-btn {
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.329);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.action-btn:hover {
  background: #ffffff6c;
  transform: translateY(-2px);
}

.regenerate-btn {
  background: #ffffff6c;
  border-color: #7fffd4;
  position: absolute;
  left: calc(124px + 8%);
}

.checkout-btn {
  background: #ffffff6c;
  border-color: #67ff67;
  position: absolute;
  right: 5%;
}

.adjust-btn {
  position: absolute;
  left: 5%;
  border-color: #7fffd4;
}

.chat-container::-webkit-scrollbar {
  width: 10px !important;
}

.chat-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.185);
  border-radius: 5px;
}

.chat-container::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #cacaca;
  border: 3px solid transparent;
  background-clip: content-box;
}
