.ft-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ft-search {
  position: relative;
  flex: 1 1 240px;
  max-width: 360px;
}

.ft-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #878a99;
}

.ft-search input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.25rem;
  border: 1px solid #e9ebec;
  border-radius: 0.375rem;
  background: #fff;
}

.ft-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #878a99;
}

.ft-empty i {
  font-size: 2.5rem;
  opacity: 0.6;
}

.ft-category {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ft-category.cogni {
  background: rgba(36, 226, 144, 0.15);
  color: #1a9d63;
}

.ft-category.arena {
  background: rgba(80, 165, 241, 0.15);
  color: #2f7ec0;
}

.ft-category.field {
  background: rgba(241, 180, 76, 0.18);
  color: #b07a12;
}

.ft-category.training-track {
  background: rgba(155, 89, 182, 0.15);
  color: #7d3f98;
}

.ft-category.protocol {
  background: rgba(108, 117, 125, 0.15);
  color: #495057;
}

.ft-horse-cell {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ft-horse-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #24e290;
  background: #f3f6f9;
}

.ft-horse-avatar.placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #878a99;
  font-size: 1rem;
}

.ft-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.ft-loading-overlay.show {
  display: flex;
}

.ft-loading-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 0.75rem 2rem rgba(18, 38, 63, 0.12);
  text-align: center;
}
