* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  
  html {
    height: 100%;
    overflow: hidden;
  }
  
  body {
    margin: 0;
    padding: 0;
    perspective: 1px;
    transform-style: preserve-3d;
    height: 100%;
    background-color: whitesmoke;
    overflow-y: scroll;
    overflow-x: hidden;
    font-family: Nunito, Arial, sans-serif;
    /* Added fallback fonts */
  }
  
  h1 {
    font-size: 250%;
  }
  
  p {
    font-size: 140%;
    line-height: 150%;
    color: #333;
  }
  
  /* Navigation bar */
  #navbar {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
  }
  
  #navbar a {
    color: black;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
  }
  
  #navbar .left a {
    margin-right: 20px;
    font-size: 20px;
    vertical-align: middle;
  }
  
  #navbar .right a {
    margin-left: 20px;
    font-size: 20px;
    vertical-align: middle;
  }
  
  #navbar .left img {
    height: 40px;
  }
  
  #navbar .left a:hover:not(:first-child),
  #navbar .right a:hover {
    background-color: rgba(255, 0, 0, 0.8);
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  /* popup cart */
  .addtocart-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .addtocart-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
  }
  
  .close-button {
    color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-button:hover,
  .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .delivery-button,
  .pick-up-button,
  .dine-in-button {
    display: block;
    width: 30%;
    margin-top: 10px;
    padding: 10px;
    font-size: 20px;
    margin: 10px auto;
  }







  body {
    font-family: -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
  }
  
  .input {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 110px;
    box-shadow: 0 0 0 4px #258bf8, 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
  }
  
  .input.active {
    box-shadow: 0 0 0 4px #ff5733, 0 10px 30px rgba(0, 0, 0, 0.08); /* Change box-shadow to orange and increase the spread */
  }
  .icon {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
  }
  
  .text-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 46%;
    left: 100px;
    transform: translateY(-50%);
    font-size: 2.5rem;
    font-weight: 300;
  }
  
  .text {
    display: inline-block;
  }
  
  .typed-cursor{
      background: black;
      display: block;
      opacity: 1;
      animation: blink 0.7s infinite;
      width: 1.25px;
      text-indent: -9999px;
      font-size: 0;
      height: 50px;
      display: inline-block;
  }
  
  @keyframes blink{
      0% { opacity:1; }
      50% { opacity:0; }
      100% { opacity:1; }
  }
  















  .mobile {
	box-shadow: 5px 5px 0 #768693;
	height: 640px;
	width: 400px;
	margin: 20px auto;
	overflow: hidden;
	border: 0 solid #2c3e50;
	border-width: 45px 15px 60px;
	color: #474c57;
	border-radius: 20px;
    margin-top: 15%;
}
.chatBlock {
	color: #000;
	height: 100%;
	position: relative;
	.chatRoom {
		height: 100%;
		overflow-y: auto;
	}
	.chatFoo {
		position: absolute;
		left: 0;
		bottom: 0;

		background-color: #fff;
		border-top: 1px solid #333;
		height: 50px;
		width: 100%;
	}
}
.chatList {
	padding: 10px;
	list-style: none;
	min-height: 100%;
	margin-bottom: -51px;
	&:after {
		content: '';
		display: block;
		height: 51px;
	}
	li {
		margin: 0 0 10px;
		span {
			background-color: #1abc9c;
			border-radius: 3px;
			color: #fff;
			display: inline-block;
			font-size: 15px;
			padding: 6px 12px;
		}
		&.userInput {
			text-align: right;
			span {
				background-color: #16a085;
			}
		}
        &.botResponse { /* Added style for bot response */
            text-align: left;
        }
	}
}
.icons, .inputBlock {
	float: left;
}
.icons {
	cursor: pointer;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	width: 10%;
	&.plane {
		cursor: default;
		opacity: .25;
		&.act {
			color: #16a085;
			opacity: 1;
		}
		&.err {
			color: #c0392b;
		}
		&.sndng {
			color: #2ecc71;
		}
	}
}
.inputBlock {
	margin: 0 auto;
	width: 80%;
	position: relative;
	input[type="text"] {
		border: 0;
		background-color: #fff;
		font-size: 15px;
		margin: 10px 0;
		height: 30px;
		padding: 0 10px;
		width: 100%;
		&.focus {
			border-bottom: 1px solid #c0392b;
		}
	}
}
.error, .send {
	display: none;
	background: #fff;
	position: absolute;
	left: 5px;
	top: 12px;
	padding: 5px 0;
	width: 100%;
}
.error {
	color: #c0392b;
}
.send {
	color: #16a085;
}
.inputError, .inputSending {
	&.act {
		display: block;
	}
}
.userInput {
    text-align: right;
}

.userInput span {
    background-color: #16a085;
}

.botResponse span {
    background-color: #e74c3c; /* Changed background color for bot response */
}








/* footer */
footer {
    background-color: #333;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    /* height: 35vh; */
    margin-top: 2%;
  }
  
  footer img {
    height: 30px;
    margin-right: 10px;
  }
  
  .column {
    flex: 1;
    margin-bottom: 20px;
  }
  
  .column h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
  }
  
  .column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .column ul li {
    margin-bottom: 8px;
  }
  
  .column ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
  }
  
  .column ul li a:hover {
    text-decoration: underline;
  }
  
  .store-icons img {
    height: 70px;
    /* margin-right: 10px; */
  }