.main_container {
  width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.input-container {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

#input-box {
  padding: 10px;
  font-size: 16px;
  width: 90%; /* Increase the width of the input box */
  border: 1px solid #ccc;  
  border-radius: 4px 0 0 4px; /* Add border-radius to the left side */
  margin-right: 10px; /* Add some spacing between the input box and button */
}

#send-btn {
  padding: 10px 15px;
  font-size: 16px;
  background-color: #00B9FE;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  width: 10%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}



#send-btn:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#send-btn:active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  animation: spark 0.5s ease-out;
}

@keyframes spark {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
}

.side-panel {
  position: fixed;
  top: 0;
  left: -200px; /* Initial position, hidden from view */
  width: 200px;
  height: 100%;
  background-color: white;
  transition: left 0.3s ease-in-out;
  padding: 20px;
  box-sizing: border-box;
  z-index: 999; /* Ensure the panel is above other content */
}

.side-panel.show {
  left: 0; /* Show the panel when the 'show' class is added */
}

.side-panel-arrow {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  padding: 10px;
  cursor: pointer;
  z-index: 1000; /* Ensure the arrow is above the panel */
}

.side-panel-arrow img {
  width: 20px; /* Adjust the size as needed */
  height: 20px;
}

.side-panel-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}