/* Minimal floating assistant style */
#halo-widget-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #4f46e5;
  color: white;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}


#halo-chat {
  padding: 12px;
  flex-grow: 1;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.4;
}

#halo-chat input {
  width: 100%;
  border: none;
  border-top: 1px solid #374151;
  background: #111827;
  color: #f9fafb;
  padding: 10px;
  font-size: 14px;
  outline: none;
}


#halo-chat div {
  margin-bottom: 8px;
}

#halo-widget-icon {
  background-color: #6366f1; /* Tailwind indigo-500 */
  border: 2px solid #1f2937;
}


#halo-widget-box {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  max-height: 400px;
  background: #1f2937; /* Tailwind gray-800 */
  color: #f9fafb;       /* Tailwind gray-100 */
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow: hidden;
  font-family: sans-serif;
}


#halo-widget .user-msg {
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    margin: 5px 0;
    border-radius: 8px;
    text-align: right;
}

#halo-widget .halo-msg {
    background-color: #2ecc71;
    color: white;
    padding: 5px 10px;
    margin: 5px 0;
    border-radius: 8px;
    text-align: left;
}