#drsoil-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#drsoil-toggle {
  width: 50px;
  height: 50px;
  background: var(--e-global-color-accent, #006400);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

#drsoil-chatbox {
  display: none;
  width: 320px;
  height: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  overflow: hidden;
  flex-direction: column;
}

#drsoil-header {
  background: var(--e-global-color-accent, #006400);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}

#drsoil-messages {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  font-size: 14px;
}

#drsoil-messages .user { color: #006400; margin-bottom: 6px; }
#drsoil-messages .ai { color: #00008b; margin-bottom: 6px; }

#drsoil-form {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border-top: 1px solid #ddd;
}
#drsoil-form input, #drsoil-form select, #drsoil-form button {
  margin: 4px 0;
  padding: 6px;
}
#drsoil-form button {
  background: var(--e-global-color-accent, #006400);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}