/* Main stylesheet */
.assistant-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1e88e5;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 9999;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.assistant-modal {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  max-height: 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  overflow: hidden;
}

.assistant-header {
  background: #1e88e5;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

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

.assistant-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}

.assistant-input-area input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
}

.assistant-input-area button {
  background: #1e88e5;
  color: white;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
}

.assistant-bot-msg {
  margin-bottom: 8px;
  background: #f1f1f1;
  padding: 8px 12px;
  border-radius: 6px;
  max-width: 80%;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}

a:hover {
  color: #084298;
  text-decoration: underline;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

/* Theme Button Hover Overrides */
.btn-primary:hover {
  background-color: #084298;
  border-color: #084298;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* Optional: Smooth section scrolling */
html {
  scroll-behavior: smooth;
}

#fileDropArea.dragover {
  background-color: #e7f1ff;
  border: 2px dashed #0d6efd;
}


.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
}

.multichannel-float {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 9999;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
