.auto-width-table {
    margin: 0 auto; /* Centers the table */
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    width: auto; /* Adjusts width to content */
}

.auto-width-table th, .auto-width-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    white-space: nowrap; /* Prevents text from wrapping */
}

.auto-width-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.auto-width-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.auto-width-table tr:hover {
    background-color: #f1f1f1;
}
.center-text {
    text-align: center;
}
.banner {
    width: 100%; /* Makes the banner full width */
    background-color: #4CAF50; /* Change to desired background color */
    color: white; /* Text color */
    padding: 20px 0; /* Top and bottom padding */
    text-align: center; /* Center text */
    font-size: 24px; /* Adjust font size as needed */
}
.centered-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0; /* Adds space above and below */
    /*height: 100vh; /* Full viewport height */
}
.box {
    border: 1px solid #ccc;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}
table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; /* Centers the table */
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
th, td {
    width: auto;
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f4f4f4;
    font-weight: bold;
}

  thead {
    background-color: #4CAF50;
    color: white;
  }

  thead th {
    padding: 12px;
    text-align: left;
  }

  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  tbody td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }

  tfoot {
    background-color: #f1f1f1;
    font-weight: bold;
  }

  tfoot td {
    padding: 12px;
  }


#chart-container {
    width: 400px;
    height: 300px;
    margin: 0 auto;
}

#myChart {
    width: 100%;
    height: 100%;
}