#app-main {
    height: 100%;
    width: 100%;
}


.react-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-links > li {
    padding: 0 10px;
    margin: 0;
    display: inline-block;
}

.header-links li:before {
    content: '';
    margin: 0;
    padding: 0;
    width: 0;
    display: none;
}

.react-footer {

}


/* react components (non-layout specific) rules */
.DataStoreEditor--heading {
    width: 1024px;
    background-color: rgb(255, 223, 159);
    padding: 1em 0;
    display: flex;
    flex-direction: row;
}

.DataStoreEditor--heading select {
    font-size: 14px;
    border: solid black 1px;
    border-radius: 0;
    flex: 1 0 auto;
}

.DataStoreEditor--create {
    font-size: 14px;
    margin: 0 5px;
}

.DataTable {
    padding: 0;
    margin: 0;
}

.DataTable__rowItem {
    padding: 0;
    margin: 0;
}

.DataTable__rowItem:nth-of-type(2n) {
    background-color: rgba(184, 215, 205, 0.58);
}

.DataTable__cell {
    padding: 0;
    margin: 0;
    counter-increment: inherit;
    width: 10em;
    box-sizing: border-box;
}

.DataTable__cell input {
    background-color: transparent;
    border: solid black 1px;
    width: 100%;
    box-sizing: border-box;
}

.DataTable__cell:before {
}


/* Modal component */
.Modal {
    position: fixed;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
}

.Modal__backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--cloudy-white);
}

.Modal__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 800px;
    height: 600px;
    background-color: var(--light-blue);
    border: solid var(--light-blue) 1px;
    margin: auto auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.Modal__content--header {
    flex: 0 0 auto;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    margin: 0.5em 0.5em 0;
}

.Modal__content--body {
    background-color: var(--white);
    flex: 1 0 auto;
    border-radius: inherit;
    padding: 0.5em;
}

.Modal__content--footer {
    display: flex;
    flex-direction: row;
}

.Modal__content--footer button {
    font-size: 15px;
    border: solid black 1px;
    background-color: inherit;
    flex: 1 0 auto;
}

.Modal__content input {
    width: 100%;
    font-size: 16px;
    padding: 5px;
    box-sizing: border-box;
}

.Modal__content input[disabled] {
    color: rgba(0, 0, 0, 0.3);
}

.EditablePair {
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
}


/* UserProfile component */

.input-pair {
    display: flex;
    flex-direction: row;
}

.input-pair label {
}