/* Base table rules */
.hcffPy-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
  }
  
  /* Compact modifier */
  .hcffPy-compact-table {
    /* inherits border-collapse & border-spacing */
    font-size: 13px;
    line-height: 1.1;
  }
  
  /* Cell padding & borders */
  .hcffPy-table th,
  .hcffPy-table td {
    border: 1px solid #ddd;
    padding: 3px;
    text-align: left;
    margin: 0;
  }
  
  /* Tighter padding for compact tables */
  .hcffPy-compact-table th,
  .hcffPy-compact-table td {
    padding: 2px 4px;
    margin: 0;
  }
  
  /* Alternating row colors */
  .hcffPy-table tr:nth-child(even),
  .hcffPy-compact-table tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  /* Header row background */
  .hcffPy-table thead,
  .hcffPy-compact-table thead {
    background-color: #afafaf;
    color: white;
  }
  
  /* Prevent wrapping in designated cells */
  .hcffPy-table .no-wrap,
  .hcffPy-compact-table .no-wrap {
    white-space: nowrap;
  }
  
  /* Optional: remove borders for an even more minimal look */
  .hcffPy-compact-table th,
  .hcffPy-compact-table td {
    border: none;
  }

  

