html, body {
  height: 100%;
  margin: 0;
  background-color: pink;
  background-image: url('piggy.png');
  background-repeat: repeat;
  background-size: cover;
}

.banner {
      background-color: #000000d2; /* Change color */
      color: rgb(0, 0, 0);
      text-align: center;
      color: #ff98c8;
      padding: 1px;
      font-size: 24px;
      font-weight: bold;
	    margin: 0px;
    }

.menu-btn {
      position: fixed;
      top: 35px;
      left: 15px;
      z-index: 1001;
      background: #333;
      color: white;
      border: none;
      padding: 10px 15px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 10px;
    }

    /* Sidebar menu */
    .side-menu {
      position: fixed;
      top: 0;
      left: -250px; /* hidden off screen */
      width: 250px;
      height: 100%;
      background: #222;
      color: white;
      padding-top: 85px;
      transition: 0.3s;
      z-index: 1000;
    }

    .side-menu a {
      display: block;
      padding: 15px 20px;
      color: white;
      text-decoration: none;
      transition: 0.2s;
    }

    .side-menu a:hover {
      background: #444;
    }

    /* Show menu when active */
    .side-menu.active {
      left: 0;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
    }

    /* User icon */
    .user-icon {
      cursor: pointer;
      position: absolute;
      top: 35px;
      right: 15px;
    }

    .user-icon img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }

.banner1 {
      background-color: #00000082; /* Change color */
      color: rgb(0, 0, 0);
      text-align: center;
      color: #065c27;
      padding: 20px;
      font-size: 24px;
      font-weight: bold;
	  border-radius: 10px;
	  margin: 10px;
    }

#chatbox {
      width: 90%;
      max-width: 600px;
      margin: 0 auto;
      padding: 15px;
      border: 2px solid white;
      border-radius: 12px;
      background: #00000082;
      text-align: left;
    }

    #messages {
      min-height: 150px;
      max-height: 300px;
      overflow-y: auto;
      margin-bottom: 15px;
      padding: 10px;
      border: 1px solid white;
      border-radius: 8px;
      background: #00000082;
      font-size: 14px;
    }

    .msg-user {
      color: #ff98c8;
      margin: 5px 0;
    }

    .msg-ai {
      color: lightgray;
      margin: 5px 0;
    }

    #userInput {
      width: 70%;
      padding: 8px;
      border-radius: 8px;
      border: 1px solid white;
      background: #ff98c8;
      color: black;
    }

    button {
      padding: 8px 12px;
      margin-left: 5px;
      border: none;
      border-radius: 8px;
      background: #ff98c8;
      cursor: pointer;
      color: black;
    }

a:link {
		color: #ff98c8; /*unvisted link*/
    text-decoration: none;
	}

	a:visited {
		color: #ff98c8; /* Visited link */
    text-decoration: none;
		}

	a:hover {
		color: #ff98c8; /* When mouse hovers over */
		}