/* General page styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
  }
  .container {
    max-width: 80%;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  h1 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  /* Table styling */
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  th, td {
    padding: 12px;
    text-align: left;
  }
  th {
    background-color: #5c6bc0;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
  }
  td {
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
  }
  tr:hover {
    background-color: #f1f1f1;
  }
  tr:nth-child(even) td {
    background-color: #f3f3f3;
  }
  /* Optional: Styling for the table container */
  #table-container {
    margin-top: 20px;
  }