/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#tohju-bot-custom-floating-container {
  position: fixed;
  bottom: 0;
  left: 1rem;
  /* Adjusted for `start-1` */
  margin: 1rem;
  z-index: 1050;
}


.tohju-card {
  background-color: #fff;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.125);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  width: 350px;
}

.tohju-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  background-color: #f7f7f9;
}

.tohju-btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.2rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.tohju-btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.tohju-btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.tohju-btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.tohju-btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.tohju-btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.tohju-me-2 {
  margin-right: 0.5rem;
}

.tohju-position-fixed {
  position: fixed;
}

.tohju-bottom-0 {
  bottom: 0;
}

.tohju-start-1 {
  left: 1rem;
}

.tohju-m-3 {
  margin: 1rem;
}

.tohju-d-none {
  display: none;
}

.tohju-d-flex {
  display: flex;
}

.tohju-justify-content-between {
  justify-content: space-between;
}

.tohju-align-items-center {
  align-items: center;
}

.tohju_bot_recommended_posts {
  width: 100%;
}
.tohju_bot_recommended_posts h2 {
  margin-bottom: 1em;
}

.tohju_bot_recommended_posts .posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tohju_bot_recommended_posts li {
  margin-right: 20px;
  margin-bottom: 40px;
}

.tohju_bot_recommended_posts li img {
  width: 100%;
  height: 150px;
  /* Set a fixed height for images */
  object-fit: cover;
}

