/* CSS for the KPI table */

#strategyContent {
    display: none;
  }
  
  #kpi-table-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
  }
  
  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
  }
  
  th {
    background-color: #f2f2f2;
  }
  
  tr:hover {
    background-color: #eaf6ff;
  }
  
  td#total-pnl {
    font-weight: bold;
    color: #008000;
  }
  
  td#total-losing-trades {
    font-weight: bold;
    color: #ff0000;
  }