.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
  }
  
  .results-table th, .results-table td {
    border: 1px solid #ddd;
    padding: 0.6rem 0.9rem;
    text-align: left;
  }
  
  .results-table th {
    background-color: #f2f2f2;
  }
  
  .results-table tr:nth-child(even) {
    background-color: #fafafa;
  }
  

  table {

        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        display: none; /* Initially hidden (collapsed) */
  }
th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}
th {
    background-color: #f4f4f4;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}

 /* Styling the caption for the table */
 table caption {
    font-size: 1.5em;
    margin-bottom: 10px; /* Space between caption and table */
    text-align: center;
}

/* Style for the collapsible button */
.collapsible-btn {
    background-color: var(--highlight-color);
    color: white;
    padding: 10px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
}

.collapsible-btn:hover {
    background-color: #45a049;
}

@media screen and (max-width: 600px) {
    table, thead, tbody, th, td, tr {
      display: block;
     
    }

    table
    {
        display: none; /* Initially hidden (collapsed) */
    }
  
    thead {
      display: none;
    }
  
    tr {
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      padding: 10px;
    }
  
    td {
      text-align: right;
      padding-left: 50%;
      position: relative;
    }
  
    td::before {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      text-align: left;
      font-weight: bold;
    }
  }