    /* Isolate the bell changes section */
#bellChangesSection {
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

/* Layout for the two columns */
#results {
    display: flex;
    margin-top: 20px;
}

#textColumn {
    margin-right: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table, th, td {
    border: 1px solid black;
}

th, td {
    padding: 10px;
    text-align: center;
}

    #results {
        display: flex;
        align-items: flex-start; /* Aligns the top of the table and graph */
    }

    #graph {
        border: 1px solid black;
        margin-left: 20px;
    }
