/* Launcher button for minimized chatbot */
#audiocatch-support-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #f04452;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(17,24,39,0.18);
  font-size: 28px;
  cursor: pointer;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  display: none;
  transition: background 0.2s;
}
#audiocatch-support-launcher:hover {
  background: #c81f36;
}
/* AudioCatch Support Chatbot Widget Styles */
.audiocatch-support-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  max-width: 95vw;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(17,24,39,0.18);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}
.audiocatch-support-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f04452;
  color: #fff;
  border-radius: 14px 14px 0 0;
  font-weight: 700;
}
#audiocatch-support-minimize {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.audiocatch-support-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #f6f8fc;
  min-height: 120px;
  max-height: 260px;
}
.audiocatch-support-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}
#audiocatch-support-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
}
#audiocatch-support-send {
  background: #f04452;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
#audiocatch-support-send:hover {
  background: #c81f36;
}
.audiocatch-support-user {
  text-align: right;
  margin-bottom: 8px;
  color: #111827;
}
.audiocatch-support-bot {
  text-align: left;
  margin-bottom: 8px;
  color: #475467;
}
