textarea {
    width: 100%;
    height: 53pt;
    font-family: monospace;
    font-size: 12.5pt;
}

#table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    min-width: 100%;
}

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

tbody th {
    text-align: left;
    padding-right: 10px;
}

td {
    font-family: monospace;
}

footer {
    margin-top: 15px;
    border-top: 1px solid black;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0.5);
}

#loading-item {
    text-align: center;
    color: white;
}

.hide {
    display: none !important;
}

.spinner {
    display: inline-block;
    border: 3px solid #444;
    border-left-color: #09f;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
