/* Breadcrumb styles */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
  background-color: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  display: inline-block;
  padding: 0 0.5rem;
  color: #6c757d; /* muted */
}

.breadcrumb-item a {
  color: #0d6efd; /* bootstrap primary */
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d; /* muted */
  font-weight: 500;
}

/* 

1. Add your custom Css styles below
2. Place the this code in your template: 

 <link href="css/custom.css" rel="stylesheet">

*/

.text-black {
  color: #000 !important;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Detail card styles */
.detail-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.detail-header {
  background-color: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #eee;
}

.detail-body {
  padding: 20px;
}

.detail-label {
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.detail-value {
  font-size: 1.1rem;
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.detail-pair {
  display: flex;
  margin-bottom: 15px;
  gap: 10px;
}

.detail-pair .detail-label {
  min-width: 150px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.detail-pair .detail-value {
  flex: 1;
  margin-bottom: 0;
  min-width: 0; /* Allow flexbox to shrink below content size */
}