@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --offcanvas-width: 270px;
  --topNavbarHeight: 56px;
}

* {
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #F6F9FF;
}

a {
  text-decoration: none;
}

.sidenav .bordered {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-nav {
  width: var(--offcanvas-width) !important;
}

.sidebar-link {
  display: flex;
  align-items: center;
}

.sidebar-link .right-icon {
  display: inline-flex;
  transition: all ease 0.25s;
}

.sidebar-link[aria-expanded="true"] .right-icon {
  transform: rotate(180deg) !important;
}

.bg-purple {
  background-color: #3445B4;
}

.offcanvas-header {
  background-color: #1a2fbe;
  font-size: 25px;
  padding: 10px;
}

.breadcrumb-item {
  font-size: 18px;
}

.text-center {
  text-align: center !important;
}

.navbar-brand {
  text-transform: uppercase;
}

@media (min-width:992px) {
  body {
    overflow: auto !important;
  }

  .offcanvas-backdrop::before {
    display: none;
  }

  main {
    margin-left: 0;
  }

  .sidebar-nav {
    transform: none !important;
    visibility: visible !important;
    /* top: var(--topNavbarHeight) !important;
    height: calc(100%- var(--topNavbarHeight)) !important; */
  }
}

.profile-details li {
  display: inline-block;
  list-style: none;
  font-size: 17px;
}

.profile-details>.text-muted {
  width: 120px;
  text-align: end;
}

.chat-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 600px;
  margin: auto;
}

.chat-message {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
}

.chat-message.bot {
  justify-content: flex-start;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message .message-bubble {
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 70%;
  font-size: 16px;
}

.chat-message.bot .message-bubble {
  background-color: #e9f5ff;
  color: #333;
}

.chat-message.user .message-bubble {
  background-color: #3445B4;
  color: white;
}

.feedback-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 600px;
  margin: auto;
}

.feedback-message {
  margin: 10px 0;
  display: flex;
  align-items: flex-start;
}

.feedback-message.ai {
  justify-content: flex-start;
}

.feedback-message.user {
  justify-content: flex-end;
}

.feedback-message .message-bubble {
  padding: 10px 15px;
  border-radius: 20px;
  max-width: 70%;
  font-size: 16px;
}

.feedback-message.ai .message-bubble {
  background-color: #3445B4;
  color: white;
}

.feedback-message.user .message-bubble {
  background-color: #e9f5ff;
  color: #333;
}