/* ── Equipment Location Tags ── */
.eqloc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 8px;
}
.eqloc-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(181,183,185,.08);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
}
.eqloc-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.eqloc-stat-label {
  font-size: 11px;
  color: var(--muted, #888);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.eqloc-item {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 14px !important;
}
.eqloc-item-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eqloc-tag-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(140,106,62,.12);
  color: var(--bronze, #8C6A3E);
  border: 1px solid rgba(140,106,62,.25);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.eqloc-tag-btn:hover {
  background: rgba(140,106,62,.22);
  border-color: rgba(140,106,62,.4);
}
.eqloc-current {
  margin: 10px 0 0 42px;
  padding: 8px 12px;
  background: rgba(39,174,96,.06);
  border: 1px solid rgba(39,174,96,.15);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ash, #ccc);
}
.eqloc-current.eqloc-untagged {
  background: rgba(231,76,60,.06);
  border-color: rgba(231,76,60,.15);
}
.eqloc-current-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #fff;
}
.eqloc-current-loc svg {
  color: var(--bronze, #8C6A3E);
  flex-shrink: 0;
}
.eqloc-current-meta {
  font-size: 11px;
  color: var(--muted, #888);
  margin-top: 3px;
  padding-left: 19px;
}
.eqloc-no-location {
  color: var(--muted, #888);
  font-style: italic;
  font-size: 12px;
}
.eqloc-zone-badge,
.eqloc-floor-badge {
  display: inline-block;
  background: rgba(140,106,62,.15);
  color: var(--bronze, #8C6A3E);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  vertical-align: middle;
}
.eqloc-floor-badge {
  background: rgba(100,149,237,.15);
  color: #6495ED;
}
.eqloc-form-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.eqloc-form-card h3 svg {
  color: var(--bronze, #8C6A3E);
}
.eqloc-form-row {
  display: flex;
  gap: 12px;
}
.eqloc-history-icon {
  background: rgba(140,106,62,.12) !important;
}
.eqloc-history-icon svg {
  color: var(--bronze, #8C6A3E) !important;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .eqloc-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .eqloc-form-row {
    flex-direction: column;
    gap: 0;
  }
  .eqloc-current {
    margin-left: 0;
  }
}
