noscript div {
    background-color: #FFCE00;
    color: #000000;
    font-size: 30px;
    text-align: center;
}
.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.main-table {
    margin: auto;
    border: 10px double #ffcc00;
}
.error-message {
    color: #ffcc00;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 1.2em;
    text-align: center;
    padding: 10px;
    width: 550px; /* Match the width of the table */
    border-radius: 8px;
    position: absolute;
    top: calc(50% - 340px); /* Move up by increasing the subtracted value */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; /* Ensure it appears above other elements */
}
.warning {
    background-color: #D3D3D3;
    color: #FF0000;
    font-size: 30px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}