.breadcrumb-section {
  background-color: #f8f9fa;
  padding: 2rem 1rem;
  border-bottom: 2px solid #e0e0e0;
}

.breadcrumb-heading {
  display: flex;
  flex-direction: column; /* เพิ่มบรรทัดนี้ */
  align-items: start; /* หรือใช้ start/left ตามที่ต้องการ */
  height: 100%;
  min-height: 100px;
}


.breadcrumb-title {
  font-weight: bold;
  color: #800000;

}

.breadcrumb-subtitle {
  font-size: 1.2rem;  /* หรือขนาดที่ต้องการ */
  color: #666;         /* สีเทาอ่อน หรือสีอื่น */
  font-weight: normal; /* หรือ bold ตามต้องการ */
    margin-top: 0.8rem;
}

.breadcrumb-list {
  animation: fadeInRight 1s ease forwards;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  overflow-x: unset;
  white-space: normal;
}

.breadcrumb-list li.active {
  color: #f5b403;
}

.breadcrumb-list li.active:hover {
  color: #800000; /* แดงเลือดหมู */
  cursor: pointer; /* ถ้าอยากให้เมาส์เปลี่ยนเป็น pointer */
}

.custom-breadcrumb-full {
  background-color: #bd202d; /* สีพื้นอ่อน */
  padding: 15px 25px;
  border-radius: 20px; /* มุมโค้ง */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%; /* ยืดเต็มพื้นที่ */
  margin-top: 15px;
  margin-bottom: 15px;
}

.custom-breadcrumb-full:hover {
  background-color: #b3b1b1; /* สีพื้นอ่อน */
  transition: background-color 0.3s ease;
}

.custom-breadcrumb-full li a {
  color: #fafbfb;
  text-decoration: none;
  font-weight: 600;
}

.custom-breadcrumb-full li a:hover {
  text-decoration: underline;

}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

