body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url('pageback.jpg');
    background-size: cover;
    background-attachment: fixed;
}

#header, #loading {
    width: 800px;
    margin: 10px auto;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 0px;
}

#searchbox {
    width: 500px;
    margin: 20px auto;
    background-color:mintcream;
    color: black;
    padding: 20px;
    display: none;
    flex-direction: column;
    justify-content: center;
    border: 5px solid gray;
}

.bigfont {
    font-size: 24pt;
}

.hugefont {
    font-size: 45pt;
}

#results {
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.right {
    text-align: right;
}

#results table {
    width: 100%;
}

#results table td {
    font-size: 18pt;
    text-align: left;
}

.bar-container {
    margin: 10px auto;
    display: flex;
    align-items: center;
}
.bar {
    height: 20px;
    background-color: steelblue;
    margin-left: 10px; /* Adjust margin to create space between bars */
}
.label {
    font-size: 18pt;
    width: 50px;
}

#chartdata {
    width: 1300px; /* Adjust width as needed */
    margin: 20px auto;
    padding: 20px;
    background-color: #333;
    border: 1px solid white;
}
#chart {
    width: 1300px; /* Adjust width and height as needed */
    height: 600px;
}

#chartcontainer {
    width: 1300px;
    margin: 20px auto;
    display: none;
}

.chartbox {
    width: 1300px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgb(220, 245, 236);
    color: black;
    border: 3px solid rgb(133, 93, 53);
}

.clickme {
    text-decoration: underline;
    cursor: pointer;
}