.mley-chatbot {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1070;
}

.mley-chatbot__launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #133b5c, #1d5f7a);
  color: #fff;
  box-shadow: 0 18px 38px rgba(16, 42, 67, 0.28);
  cursor: pointer;
}

.mley-chatbot__launcher:hover,
.mley-chatbot__launcher:focus {
  background: linear-gradient(135deg, #0f304b, #1a536b);
  color: #fff;
  outline: none;
}

.mley-chatbot__launcher[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.mley-chatbot__launcher-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1rem;
}

.mley-chatbot__launcher-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.mley-chatbot__launcher-copy small {
  opacity: 0.82;
}

:root[data-theme="dark"] .mley-chatbot__launcher {
  background: linear-gradient(135deg, #24496d, #3a6b93);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

:root[data-theme="dark"] .mley-chatbot__launcher:hover,
:root[data-theme="dark"] .mley-chatbot__launcher:focus {
  background: linear-gradient(135deg, #2d587f, #45779e);
}

@media (max-width: 767.98px) {
  .mley-chatbot {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .mley-chatbot__launcher {
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
  }

  .mley-chatbot__launcher-copy small {
    display: none;
  }
}
