html {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #083157; /* Antonelli Blue for default text color */
  }

  body, #root, #search-box-container, table, th, td, button, #pagination {
    background-color: white; /* Make the background white */
    color: #083157; /* Antonelli Blue for text color */
  }

  #search-box-container {
    display: flex;
    justify-content: flex-start; /* Align items from left to right */
    align-items: center; /* Vertically center items */
    gap: 10px; /* Add some space between the elements */
    margin-bottom: 15px; /* Add some spacing below the container */
}

  #root {
    width: 100%; /* Make the root container full width */
  }

  table {
    border: 1px solid #EAE8E5; /* Light Grey */
    width: 100%; /* Make the table full width */
    border-collapse: collapse;
  }

  thead {
    background-color: #083157; /* Antonelli Blue */
    color: #EAE8E5; /* Light Grey */
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
  }

  tbody {
    border-bottom: 1px solid #EAE8E5; /* Light Grey */
  }

  th, td {
    border-bottom: 1px solid #EAE8E5; /* Light Grey */
    border-right: 1px solid #EAE8E5; /* Light Grey */
    padding: 8px 12px;
    text-align: left;
  }

  tfoot {
    background-color: #AFA398; /* Warm Grey */
    color: #EAE8E5; /* Light Grey */
    font-family: 'Oswald', sans-serif;
  }

  tfoot th {
    font-weight: normal;
  }

  tr {
    border-bottom: 1px solid #EAE8E5; /* Light Grey */
  }

  tr:nth-child(even) {
    background-color: #F6A705; /* Antonelli Gold */
    color: #083157; /* Antonelli Blue */
  }

  tr:nth-child(odd) {
    background-color: #00CCB7; /* Antonelli Teal */
    color: #083157; /* Antonelli Blue */
  }

  tr:hover {
    background-color: #EF3C73; /* Antonelli Pink */
    color: #EAE8E5; /* Light Grey */
  }

  th {
    font-family: 'Oswald', sans-serif;
  }

  td {
    font-family: 'Lato', sans-serif;
  }

  button {
    background-color: white; /* White background */
    color: #083157; /* Antonelli Blue text */
    border: 1px solid #083157; /* Antonelli Blue border */
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #EF3C73; /* Antonelli Pink */
    color: white; /* White text */
  }

  button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  #pagination {
    display: flex;
    justify-content: flex-end; /* Align pagination buttons to the right */
    align-items: center;
    gap: 10px; /* Space between the buttons */
    margin-top: 10px;
    padding-right: 2vh;
}

  #page-info {
    margin: 0 10px;
  }

  .styled-input, .styled-select {
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #EAE8E5;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    width: auto;
    display: inline-block;
    box-sizing: border-box;
  }

  .styled-input:focus, .styled-select:focus {
    border-color: #083157; /* Antonelli Blue */
    outline: none;
  }