body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

h1 {
    text-align: center;
    color: #e0115f; /* Ruby Red */
  }


/* General Styling for the Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #333;
    padding: 10px;
    text-align: center;
}

th {
    cursor: pointer;
    background-color: #222;
    color: #fff;
}

td {
    background-color: #444;
    color: #fff;
}

/* Filter Section Styling */
.filter-section {
    margin: 20px 0;
    display: flex;
    justify-content: space-around;
    align-content: center;
}

.filter-section label {
    align-content: center;
}
.filter-section input {
    padding: 2px;
    margin: 2px 10px;
    font-size: 14px;
    width: 100px;
    border-radius: 4px; /* Optional: rounded corners */
}

input[type="number"] {
    width: 45px; /* Adjust width */
}


/* Table Row Hover */
tr:hover {
    background-color: #666;
}

/* Result Color Classes */
.result-green {
    background-color: #4CAF50; /* Green */
    color: white;
  }
  
  .result-red {
    background-color: #f44336; /* Red */
    color: white;
  }
  
  .result-yellow {
    background-color: #FFEB3B; /* Yellow */
    color: black;
  }
  
  .result-grey {
    background-color: #A9A9A9; /* Grey */
    color: white;
  }

  /* Media Queries */
  @media (max-width: 700px) {
    .filter-section {
        flex-direction: column;
        align-items: stretch;
    }
  
    th, td {
      padding: 2px;
      font-size: 0.8em;
    }

    .filter-section input{
        width: 95%; /* Adjust width */
    }
  }
