.bh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

.bh-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.bh-header-left h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  display: inline-block;
  margin-right: 8px;
}

.bh-breadcrumb {
  font-size: 11px;
  color: #6b7280;
  display: inline-block;
}

.bh-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
}

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

.bh-btn-outline {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: 0.2s;
}

.bh-btn-outline:hover {
  background: #f9fafb;
}

/* Card & Table */
.bh-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.bh-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bh-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.bh-table-wrapper {
  overflow-x: auto;
}

.bh-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.bh-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #fafafa;
}

.bh-table td {
  padding: 16px;
  font-size: 11px;
  color: #4b5563;
  border-bottom: 1px dashed #e5e7eb;
}

.bh-table tr:last-child td {
  border-bottom: 1px solid #e5e7eb;
}

.bh-table-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.bh-table-link:hover {
  text-decoration: underline;
}

.bh-sort-icon {
  display: inline-flex;
  flex-direction: column;
  font-size: 8px;
  margin-left: 4px;
  color: #9ca3af;
  vertical-align: middle;
}

.bh-checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  background: #fff;
  position: relative;
}

.bh-checkbox:checked {
  background: #3b82f6;
  border-color: #3b82f6;
}

.bh-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bh-badge-upcoming {
  background: #fef9c3;
  color: #854d0e;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.bh-badge-paid {
  background: #dcfce7;
  color: #166534;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.bh-badge-canceled {
  background: #fee2e2;
  color: #b91c1c;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Pagination Footer */
.bh-pagination-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.bh-show-entries {
  font-size: 11px;
  color: #4b5563;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bh-select {
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  color: #111827;
  background: #fff;
  outline: none;
}

.bh-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #4b5563;
}

.bh-page-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  color: #6b7280;
  transition: 0.2s;
}

.bh-page-btn:hover {
  background: #f3f4f6;
}

.bh-page-active {
  background: #f3f4f6;
  color: #111827;
  font-weight: 600;
}
