.clienthistory-section {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--background);
    color: var(--text);
  }
  
  .history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
  }
  
  .history-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: transform .2s ease, border-color .2s ease;
    cursor: pointer;
  }
  .history-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
  }
  .history-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .history-card .name {
    font-weight: 600;
    display: block;
  }
  .history-card .city {
    font-size: 0.75rem;
    color: #bbb;
  }
  
  .empty {
    text-align: center;
    font-size: 0.95rem;
    color: #aaa;
  }
  