

html {
    position: relative;
    min-height: 100%;
}

body {
    background-color: #eff3f6;
    margin-bottom: 60px;
    /*    font-size: 14px;*/
    font-weight: 500;
}

/*BUTTONS*/

.crud-btn {
    background-color: #2873ff;
    padding: 9px 25px;
    margin: 5px 5px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

    .crud-btn:hover {
        color: white;
        background-color: #004293;
    }

.delete-btn {
    background-color: #c60000;
    padding: 7px 25px;
    margin: 5px 5px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    border: none;
    transition: 0.2s;
}

    .delete-btn:hover {
        color: white;
        background-color: #620000;
    }

/*/PAPERS*/

.table-wrapper {
    background-color: white;
    padding: 30px 0;
}


.crud-btn-wrapper {
    display: flex;
    flex-direction: column;
}


table tr:nth-child(odd) td {
    background-color: #f3f5f7;
    color: #898989;
}

table tr:nth-child(even) td {
    background-color: white;
    color: #898989;
}

tbody, tfoot, td, th, thead, tr {
    border-color: none;
    border-style: none;
}

th {
    color: #3e3e3e;
}


td {
    justify-content: center;
}



.tags-authors-list {
    padding-left: 0px;
    list-style-type: none;

}
.tags-authors-list  :before {
    content: "- ";
}


.org-authors-list {
    padding-left: 0px;
    list-style-type: none;
}
.org-authors-list :before {
    content: "- ";
}


/*NAVBAR*/

.navbar-bound {
    text-align: right;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: #1e243b;
    color: white;
}

.account-wrapper {
    display: flex;
}

.account-cta {
    color: white;
    text-decoration: none;
}

nav-btns {
    color: white;
    display: flex;
    align-items: center;
}


.nav-boundless {
    font-size: 30px;
    text-decoration: none;
    color: white;
}


/*CREATE/EDIT*/

#authors-list {
    margin-top: 1em;
}

#tags-list {
    margin-top: 1em;
}

.remove-file {
    float: right;
}

#orgs-list {
    margin-top: 1em;
}


.form-input {
    width: 100%;
    margin: 5px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #99caff;
    background: transparent;
    outline: none;
    font-weight: 600;
    color: #3e3e3e;
}

.file-input {
    width: 90%;
    margin: 5px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #99caff;
    background: transparent;
    outline: none;
    font-weight: 600;
    color: #3e3e3e;
}


.input-node {
    font-size: 16px;
}

.crud-table {
    display: flex;
}

.inputs-wrapper {
    background-color: white;
}

.crud-column {
    margin-top: 0;
    flex: 0 0 auto;
    width: 33.33333333%;
    padding-right: 30px;
}

.create-input-wrapper {
    display: flex;
    height: 38px;
}

.create-input {
    margin-right: 5px;
    width: 90%;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid #99caff;
    background: transparent;
    outline: none;
    font-weight: 600;
    color: #3e3e3e;
    height: 30px;
}

.paper-file {
    padding: 1em;
    margin-bottom: 1.5rem;
    border: 2px solid gray;
}

h4 {
    margin: 0;
}

#add-new-author {
    padding: 0px 15px;
    text-align: center;
    border-radius: 10px;
    color: #2873ff;
    font-size: 35px;
    text-decoration: none;
    width: 10px;
    transition: 0.2s;
}

#add-new-org {
    padding: 0px 15px;
    text-align: center;
    border-radius: 10px;
    color: #2873ff;
    font-size: 35px;
    text-decoration: none;
    width: 10px;
    transition: 0.2s;
}

#add-new-tag {
    padding: 0px 20px;
    text-align: center;
    border-radius: 10px;
    color: #2873ff;
    text-decoration: none;
    font-size: 35px;
    width: 20px;
    height: 10px;
    transition: 0.2s;
}


#abstract-control {
    width: 900px;
}

/* Overrides Bootstrap style with higher contrast color */
.text-danger {
    /*   font-size: 14px;*/
    color: darkred !important;
    background-color: #ffdddd;
}

.required-field-marker {
    color: red;
}

/*DETAILS/DELETE*/

.row-detail-del {
    display: flex;
}

.details-del-wrapper {
    background-color: white;
    padding: 20px;
}

/* Paper Index filters */
.control-wrapper {
    padding-bottom: 10px;
}

.filter-group {
    display: inline-block;
    vertical-align: middle;
}