.main-wrapper{
    margin-top: 150px;
}

.utils-section{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.search-util, .add-util{
    display: flex;
    justify-content: space-between;
}

.search-util{
    width: 60%;
}

.search-util form, .add-util form{
    width: 80%;
}

.search-util form .form-group{
    width: 70%;
}

.search-util form button{
    width: 15%;
}

.search-util form .form-group input{
    width: 100%;
}

.add-form-section{
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.path-nav-section{
    width: 100%;
    margin-bottom: 20px;
}


.modal-util{
    display: flex;
}

.modal-search{
    width: 30%;
}

.modal-search input{
    margin-right: 20px;
}


/* ----------------- PUBLICATIONS --------------- */
.action{
    display: block;
}

.pub-table > tbody > tr > td:last-child{
    display: none;
}


/* ------------------- REGISTER & LOGIN ------------------- */
.auth-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-wrapper {
    width: 700px;
    margin: 0 auto;
    padding: 50px 10px;
    border: 1px solid #999999;
    border-radius: 20px;
    text-align: center;
}

.logo{
    height: 70px;
    margin-bottom: 25px;
}

.logo > img{
    max-height: 100%;
}

.login-logo-text{
    color: #003366;
    font-size: 25px;
    font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif;
    text-decoration: underline;
    display: inline-block;
}

.auth-form-title{
    text-align: center;
    margin-bottom: 30px;
}

.auth-form{
    width: 400px;
    margin: 0 auto;
}

.auth-form input{
    padding: 10px 20px;
}

.auth-form-btn{
    margin-top: 20px;
    width: 100%;
}

.auth-btn{
    margin-top: 20px;
    width: 50%;
}


/* ------------------- NAVBAR ------------------- */
.navbar{
    height: 100px;
}

.navbar-brand{
    width: 300px;
    height: 70px;
    padding: 0px 30px;
}

.navbar-brand a{
    display: block;
    margin-bottom: 5px;
}

.navbar-brand img{
    position: relative;
    max-height: 100%;
    max-width: 100%;
    height: 50px;
}


.logo-text{
    color: #003366;
    font-size: 16px;
    font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif;
    /*margin-left: 10px;*/
}


/* ---------------- home.html ----------------- */
.profile-text{
    font-size: 16px;
}

.user-info-card{
    width: 100%;
    margin: 30px 0;
    border-radius: 15px;
}

.publication-section{
    margin-bottom: 20px;
    text-align: center;
}

.publication-section a{
    display: block;
    padding: 10px 20px;
    border: 1px solid red;
    border-radius: 5px;
    cursor: pointer;
}

.publication-card{
    display: flex;
    align-items: center;
    border: 1px solid grey;
    border-radius: 10px;
    text-align: center;
    height: 100px;
    margin-bottom: 20px;
}

.publication-card .card-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.publication-link{
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}


.publication-wrapper{
    display: block;
    margin: 20px 0;
    width: 100%;
    padding: 0 15px;
}

.item-card{
    border: 1px solid #ccc;
    border-radius: 15px;
    line-height: 10px;
    margin-bottom: 20px;
}

.item-label{
    font-weight: 700;
}



/* --------------- multi-tab form ------------------ */
.add-form{
    width: 100%;
    margin-top: 30px;
}

.active_tab1 {
    background-color: #fff;
    color: #333;
    font-weight: 600;
}

.inactive_tab1 {
    background-color: #f5f5f5;
    color: #333;
    /*cursor: not-allowed;*/
}

.required-input{
    color: red;
}

.nav-step1-error, .nav-step2-error, .nav-step3-error, .hide{
    display: none;
}

.has-error {
    border-color: #cc0000;
    background-color: #ffff99;
}

.file-upload-wrapper{
    display: flex;
    width: 90%;
}

.file-upload-wrapper button{
    margin-right: 10px;
}

.file-upload-wrapper input{
    width: 80%;
}


/* --------------- modals ------------------ */
#add-publisher-modal .modal-content,
#add-science-event-modal .modal-content,
#add-coauthor-modal .modal-content,
#add-periodical-modal .modal-content,
#add-executor-modal .modal-content{
    padding: 30px;
}

#add-new-publisher-modal .modal-content,
#add-new-science-event-modal .modal-content,
#add-new-coauthor-modal .modal-content,
#add-new-periodical-modal .modal-content,
#add-new-executor-modal .modal-content{
    border: 2px solid gray;
    box-shadow: 10px 10px 8px 10px #888888;;
}

#add-publisher-modal > .modal-dialog,
#add-science-event-modal > .modal-dialog,
#add-coauthor-modal > .modal-dialog,
#add-periodical-modal > .modal-dialog,
#add-executor-modal > .modal-dialog{
    max-width: 1500px !important;
}

#add-new-publisher-modal > .modal-dialog,
#add-new-science-event-modal > .modal-dialog,
#add-new-coauthor-modal > .modal-dialog,
#add-new-periodical-modal > .modal-dialog,
#add-new-executor-modal > .modal-dialog{
    max-width: 700px !important;
}


