#loadingOverlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.containerDiv {
    width: 100%;
    display: flex;
}

.leftDiv {
    width: 50%;
}

.rightDiv {
    width: 50%;
    padding-left: 50px; 
}

.dottedDiv {
    margin-top: 10px;
    border: 1px dotted;
    padding: 5px 10px 5px 5px;
}
.dottedDiv pre {
    margin-left: -85px !important;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: left;
}

label {
    display: inline;
    width: 100px;
    text-align: left;
    margin-right: 10px;
}

input[type="text"] {
    flex: 1;
}

.button-container {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    /* Center the button */
}

table {
    display: flex;
    justify-content: left;
    width: 50%
}