/* Shared fleet list + details — vehicles, trailers, equipment */

.fleet-archive-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.fleet-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fleet-card {
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(17, 17, 17, 0.1));
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.fleet-card:active {
  transform: scale(0.98);
}

.fleet-card-name {
  font-weight: 800;
  font-size: 15px;
}

.fleet-card-sub {
  font-size: 12px;
  color: var(--text-muted, rgba(17, 17, 17, 0.42));
  margin-top: 2px;
}

.fleet-card-badge {
  display: inline-block;
  margin-top: 5px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(31, 143, 77, 0.1);
  color: #1f8f4d;
}

.fleet-details-panel {
  max-width: 640px;
  margin: 0 auto;
}

.fleet-details-close {
  border: 1px solid var(--border, rgba(17, 17, 17, 0.1));
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.fleet-details-body {
  padding: 16px 0;
}

.fleet-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border, rgba(17, 17, 17, 0.1));
}

.fleet-detail-row:last-child {
  border-bottom: none;
}

.fleet-detail-label {
  font-size: 13px;
  color: var(--text-muted, rgba(17, 17, 17, 0.42));
}

.fleet-detail-val {
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  max-width: 64%;
  overflow-wrap: anywhere;
}

.fleet-detail-link {
  color: #ff5a00;
  font-weight: 800;
  text-decoration: none;
}
