@import url('./themes/modern-purple.css');
/* ChatLola Chatbot Widget Styles */
.chatlola-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  max-width: 95vw;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 9999;
  overflow: hidden;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.chatlola-header {
  background: #1A3C34;
  color: #fff;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatlola-header .chatlola-logo {
  height: 28px;
  margin-right: 8px;
}
.chatlola-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.chatlola-body {
  max-height: 350px;
  min-height: 180px;
  overflow-y: auto;
  padding: 16px;
  background: #F5F6F2;
}
.chatlola-message {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  max-width: 85%;
  word-break: break-word;
  font-size: 1rem;
}
.chatlola-message.user {
  background: #1A3C34;
  color: #fff;
  margin-left: auto;
  text-align: right;
}
.chatlola-message.bot {
  background: #E0E0E0;
  color: #222;
  margin-right: auto;
  text-align: left;
}
.chatlola-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.chatlola-suggestion {
  background: #e6f2ef;
  color: #1A3C34;
  border: none;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.chatlola-suggestion:hover {
  background: #cce5de;
}
.chatlola-input-row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}
.chatlola-input-row input[type="text"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}
.chatlola-input-row select {
  margin-left: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #bdbdbd;
  font-size: 1rem;
}
.chatlola-input-row button {
  margin-left: 8px;
  padding: 10px 18px;
  background: #1A3C34;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(26,60,52,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.chatlola-input-row button:hover {
  background: #14502b;
  box-shadow: 0 4px 16px rgba(26,60,52,0.18);
}
.chatlola-send-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.chatlola-launcher {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(26,60,52,0.18), 0 1.5px 4px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: box-shadow 0.2s, background 0.2s;
  padding: 0;
}
.chatlola-launcher:hover {
  background: #eaf6fb;
  box-shadow: 0 8px 32px rgba(26,60,52,0.22), 0 2px 8px rgba(0,0,0,0.12);
}
.chatlola-launcher img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: block;
}
@media (max-width: 600px) {
  .chatlola-container {
    width: 100vw;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 0;
    max-width: 100vw;
  }
  .chatlola-header, .chatlola-body, .chatlola-input-row {
    padding-left: 6px;
    padding-right: 6px;
  }
  .chatlola-input-row {
    flex-direction: row;
    padding: 10px 6px;
  }
  .chatlola-input-row input[type="text"] {
    font-size: 1rem;
    padding: 10px 8px;
  }
  .chatlola-input-row button {
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 0;
    margin-left: 6px;
  }
  .chatlola-input-row button .chatlola-send-icon {
    width: 22px;
    height: 22px;
  }
  .chatlola-input-row button span {
    display: none;
  }
}

/* For very small screens, stack input and button vertically */
@media (max-width: 400px) {
  .chatlola-input-row {
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
  }
  .chatlola-input-row button {
    margin-left: 0;
    margin-top: 6px;
    width: 100%;
    border-radius: 8px;
    font-size: 1rem;
    min-width: unset;
    min-height: 40px;
    padding: 10px 0;
  }
  .chatlola-input-row button span {
    display: inline;
  }
} 