body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f9f9f9;
  color: #333;
  font-size: 16px;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.uk-container {
  width: 800px;
  max-width: 100%;
  margin: 0 auto 20px auto !important;
}
.logo-container {
  padding: 20px 12px 20px 20px;
}
.logo {
  height: 24px;
  display: block;
}
.logout {
  font-size: 14px;
}
.uk-navbar-nav>li>a {
  color: #333;
  padding: 0 10px;
}
.uk-navbar-nav {
  gap: 0;
  padding: 0 0 0 10px;
}
.chatbot {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.chat-window {
  width: 400px;
  height: 600px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.messages {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  scrollbar-width: thin; /* For modern browsers */
  scrollbar-color: #ddd transparent;
}

.messages::-webkit-scrollbar {
  width: 8px;
}

.messages::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 10px;
}

.user {
  text-align: right;
  background-color: #e1ffc7;
  padding: 8px 12px;
  border-radius: 15px;
  margin: 5px 0;
  display: inline-block;
  max-width: 80%;
  transition: background-color 0.3s;
}

.user:hover {
  background-color: #d4f7b6;
}

.bot {
  text-align: left;
  background-color: #f0f0f0;
  padding: 8px 12px;
  border-radius: 15px;
  margin: 5px 0;
  display: inline-block;
  max-width: 80%;
  transition: background-color 0.3s;
}
.bot:hover {
  background-color: #e6e6e6;
}
.typing-indicator {
  color: #888;
  font-style: italic;
  margin: 10px 0;
}
.input-box {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
}
.input-box input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s;
}
.input-box input:focus {
  border-color: #007bff;
}
.input-box button {
  margin-left: 10px;
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.input-box button:hover {
  background-color: #0056b3;
}
.input-box button:disabled {
  background-color: #dddccc;
  cursor: not-allowed;
}
.uk-button {
  padding: 0 12px !important;
  border-radius: 5px;
  font-size: 16px;
  height: auto;
  text-transform: none !important;
  cursor: pointer;
}

.uk-button-primary {
  background-color: #0056b3;
  color: #fff;
  width: 75px;
}
.uk-button-default {
  background-color: #fff !important;
  border: 1px solid #ddd !important;
  color: #333 !important;
  width: 75px;
}
.uk-alert {
  border-radius: 5px;
  color: #333;
  line-height: 1.4;
  padding: 10px 20px;
}
.uk-card-body {
  padding: 20px 20px 20px 20px;
  box-shadow: none;
  border: 1px solid #e5e5e5;
  border-radius: 5px;  
  color: #333;
}
.text-me {
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 10px;
  color: #333;
}
.chatbot-card {
  border-radius: 10px;
}
h1, h2, h3, h4 {
  font-weight: 500;
  color: #333 !important;
}
h1 {
  font-size: 28px;
}
h2 {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 500;
    padding-top: 10px;
}
h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 0 ;
}
h4 {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 0;
  margin: 0;
}
ol, ul {
  padding-left: 20px !important;
  margin-bottom: 5px;
}
.matching-reservations {
  padding: 0 !important;
  margin-top: 5px;
}
input, textarea {
  color: #333 !important;
  border: 1px solid #ddd !important;
  border-radius: 5px !important; 
}
.uk-offcanvas-bar {
  background-color: #f9f9f9;
  padding: 20px;
}
textarea::placeholder {
  color: #999 !important;
  opacity: 1;
}
.uk-offcanvas-close {
  color: black !important;
}
.suggested-message {
  background-color: #f2f2f2;
  border-radius: 5px;
}
.suggested-message p {
  color: #333 !important;
}
.uk-navbar-nav .uk-active {
  font-weight: bold;
  color: #007bff;
}
.uk-grid-small>.uk-grid-margin {
  margin-top: 0;
}
.uk-table th, .uk-table td {
  color: #333 !important;  
  padding: 6px 12px !important;  
  border: 1px solid #ddd;
}
.uk-table th {
  font-weight: 600;
}
*+.uk-table {
  margin-top: 10px !important;
}
.uk-navbar img {
  max-width: 160px;
}
.matching-reservations li {
  background-color: #fff !important;
  border: 1px solid #ddd !important;
  color: #333 !important;
  padding: 4px 12px !important;
  margin-right: 10px !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.matching-reservations li.selected {
  background-color: #f05252 !important;
  border: 1px solid #f05252 !important;
  color: #fff !important;
}
.matching-reservations .uk-button-text:hover {
  text-decoration: none !important;
  transition: none !important;
}
.uk-margin-bottom-small {
  margin-bottom: 15px !important;
}
.uk-margin-top-small {
  margin-top: 15px !important;
}
.uk-margin-small {
  margin-bottom: 15px !important;
  margin-top: 15px !important;
}
.company-name {
  font-size: 16px;
  font-weight: bold;
}
.uk-form-label {
  font-size: 16px !important;
}
.uk-first-column {
    margin-bottom: 5px;
}