.form-container {
    border-style: solid;
    border-width: 1.5px;
    border-radius: 5px;
    border-color: rgba(139, 139, 139, 0.501);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 3px, rgba(0, 0, 0, 0.15) 0px 1px 2px;
    height: 100%;
    width: auto;
    padding: 20px;
    display:flex;
    flex-direction: column;
}

.form-container input:disabled{
    background-color: rgba(0, 0, 0, 0.05);
}

.form-container input:active, .form-container input:focus{
    border: 2px solid #00a5b5;
    outline: none;
}

.form-container .form-header{
    align-self: flex-start;
}

.form-container .form-inner{
    display:flex;
    gap:1em;
    justify-content: space-around;
}

.custom-validation-message{
    color:red;
}

.checkbox-button{
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-button:hover{
    color:rgb(0, 0, 0, 0.50);
    cursor: pointer;
}

#checkbox-table td:first-child{
    text-align: center;
    vertical-align: middle;
}

#edit-create-table td:first-child{
    text-align:end;
    vertical-align:middle;
    width:1%;
    white-space: nowrap;
    border-left:hidden;
    border-top:hidden;
    border-bottom:hidden;
}

#form-container-tokens{
    display:flex; 
    flex-direction:column; 
    gap:5%;
    white-space:nowrap;
}