
#chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 360px;
  max-height: 440px;
  background: #0d0d0d;
  border: 2px solid #f1c40f;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  display: none;
  flex-direction: column;
}

#chat-header {
  background: #f1c40f;
  color: #0d0d0d;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chat-close {
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  border: none;
  background: none;
  color: #0d0d0d;
}

#chat-body {
  max-height: 300px;
  overflow-y: auto;
  padding: 14px;
  font-size: 14px;
  flex-grow: 1;
  background: #121212;
  color: white;
}

#chat-input {
  border: none;
  border-top: 1px solid #333;
  background: #1a1a1a;
  color: #ffffff;
  padding: 12px 14px;
  font-size: 14px;
  width: 100%;
  outline: none;
}

.user-msg, .bot-msg {
  margin-bottom: 10px;
  line-height: 1.5;
}

.user-msg { color: #ffffff; }
.bot-msg { color: #f1c40f; }

#chat-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f1c40f;
  color: #0d0d0d;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 24px;
  cursor: pointer;
  z-index: 9998;
}

.chat-suggestions {
  padding-bottom: 10px;
}

.suggestion-btn {
  margin: 6px 4px 0 0;
  padding: 8px 12px;
  background: #2c2c2c;
  border: 1px solid #f1c40f;
  border-radius: 8px;
  color: #f1c40f;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.suggestion-btn:hover {
  background: #f1c40f;
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(241, 196, 15, 0.3);
}
