/* Elegant Bootstrap 3 Table Styling */
    .table, .table.table-striped {
      border-collapse: separate;
      border-spacing: 0;
      width: 100%;
      max-width: 100%;
      background-color: transparent;
      margin-bottom: 25px;
      border: none;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      border-radius: 6px;
      overflow: hidden;
      font-family: inherit;
    }
    
    /* Header styling */
   .table, .table.table-striped thead th {
      background-color: #f8f9fa;
      color: #495057;
      font-weight: 600;
     
      letter-spacing: 0.5px;
      
      border-bottom: 2px solid #e9ecef;
      padding: 16px;
      position: relative;
      vertical-align: middle;
      text-align: left;
    }
    
    /* Apply subtle right border to all but last header */
    .table.table-striped thead th:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 25%;
      height: 50%;
      width: 1px;
      background-color: #e9ecef;
    }
    
    /* Body styling */
   .table, .table.table-striped tbody tr {
      transition: all 0.2s ease;
    }
    
    .table.table-striped tbody tr:hover {
      background-color: rgba(70, 130, 180, 0.04) !important;
    }
    
    /* Alternating row colors - more subtle than default Bootstrap */
    .table.table-striped tbody tr:nth-of-type(odd) {
      background-color: rgba(0, 0, 0, 0.02);
    }
    
    .table.table-striped tbody tr:nth-of-type(even) {
      background-color: #ffffff;
    }
    
    /* Cell styling */
    .table.table-striped td {
      padding: 14px 16px;
      vertical-align: middle;
      border-top: 1px solid #e9ecef;
      color: #495057;
      font-size: 14px;
      line-height: 1.5;
    }
    
    /* Add subtle divider between columns */
    .table.table-striped td:not(:last-child) {
      border-right: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    /* Last row styling */
    .table.table-striped tbody tr:last-child td {
      border-bottom: none;
    }
    
    /* Optional: numeric columns */
    .table.table-striped td.numeric {
      text-align: right;
      font-variant-numeric: tabular-nums;
      font-family: inherit;
    }
    
    .table-container {
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }
    
    .section-title {
      color: #3c4858;
      margin-bottom: 25px;
      font-weight: 500;
    }
    
    