:root {
    --text-color: currentColor
}

#register-user-table {
    display: flex;
    flex-direction: column;
    gap: 20px
}

#edit-table {
    background-color: transparent;
    border: 2px solid currentColor;
    border-radius: 10px;
    border-color: currentColor
}
.tabulator .tabulator-header {
    color: var(--text-color)
}
.tabulator .tabulator-header .tabulator-col {
    background-color: transparent;
    color: currentColor;
    border: none
}
.tabulator .tabulator-row {
    color: var(--text-color);
}
.tabulator .tabulator-row .tabulator-cell{
    background-color: transparent;
    color: var(--text-color);
    border: none
}

.tabulator .validation-fail {
    color: rgb(240, 183, 183) !important
}
.tabulator .validation-pass {
    color: rgb(183, 240, 202) !important
}

.table-buttons-container {
    display: flex;
    margin-top: 10px;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    visibility: visible;
}

.table-buttons-container.inactive {
    visibility: hidden;
}


.table-submit-button {
    margin-left: auto;
}

.add-row-button {
    border-width: 2px;
}

.status-loading-container {
    display: flex;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 0px;
    padding: 0px;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.status-loading-container > .loading {
    margin: 0px 2px;
    max-width: 95%;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#loading-non-edit-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 10;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #333;
}

#table-container {
    position: relative
}


#loading-results-container {
    display: none;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    flex-direction: column;
}

#validation-errors-container {
    display: none;
    margin-top:5px;
    text-align: center;
    align-items: center;
    justify-content: center
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}
.shake {
    animation: shake 0.5s ease-in-out;
}




#otp-download-results-container {
    display: flex;
    flex-direction: row;
    visibility: hidden;
}

#otp-download-results-container.active {
    visibility: visible;
}


#reset-register-table-button {
    margin-left: auto
}
