html {
  height: 100%;
  width: 100%;
}

.main-layout {
  display: flex; /* Or use grid for more complex layouts */
  height: 100vh;
}

.side-panel {
  width: 300px; /* Adjust as needed */
  background-color: #f8f8f8;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  position: fixed; /* Or absolute, depends on layout */
  top: 0;
  left: 0;
  height: 100%;
  transform: translateX(-100%); /* Start hidden */
  transition: transform 0.3s ease-out;
  z-index: 1000; /* Ensure it's above other content */
  overflow-y: auto; /* For scrollable content */
}

.side-panel.open {
  transform: translateX(0); /* Slide in */
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  color: #555;
}

.open-btn {
  position: fixed; /* Or absolute relative to chat-main-content */
  top: 20px; /* Adjust position */
  left: 20px; /* Adjust position */
  padding: 10px 15px;
  background-color: #0084ff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 999; /* Below panel but above chat */
  font-size: 18px;
}

.nav-links {
  margin-bottom: 20px;
}

.nav-link {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.nav-link:hover {
  background-color: #f0f0f0;
  padding-left: 10px;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

.chat-main-content {
  flex-grow: 1;
}

.home-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.home-content h1 {
  color: #0084ff;
  text-align: center;
  margin-bottom: 20px;
}

.home-content h2 {
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 5px;
  margin-top: 30px;
}

.home-content ul {
  background: #f8f9fa;
  padding: 15px 30px;
  border-radius: 5px;
  margin: 15px 0;
}

.home-content li {
  margin: 8px 0;
  line-height: 1.5;
}

.get-started {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #e0f2f7, #f7f0e0);
  border-radius: 8px;
}

.start-link {
  color: #0084ff;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.start-link:hover {
  text-decoration: underline;
}