* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {

}

.container.login {
    margin-top: 100px;

}

.container.login .card {
    padding: 50px;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    
}

.navContainer {
    margin-top: 20px;
    margin-bottom: 20px;
    transition: 3s;
}

.formCard {
    width:100%;
    margin-top: 40px;
}

table tr {
    height: 40px;
}

.hide-col {
    display: none;
}

#delete-message {
    display: none;
}

/* Working on 270px min width for table (give by Bootstrap) */
th.action, td.actions {
    width: 10%;
    min-width: 60px;
}
th.title, th.author, td.title, td.author {
    width: 45%;
    min-width: 105px;
}
.actions > button {
    border: none;
    background-color: transparent;
}

.header-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    height: 30px;
    width: 30px;
    align-items: center;
    justify-content: space-around;
    cursor: pointer;
}

.btn-lines {
    display: flex;
    width: 90%;
    height: 4px;
    background-color: #343a40;
}

/* Active class */
.navContainer.active {
    display: flex;
}

@media (max-width: 600px) {

    /* Mobile Menu */
    .mobile-menu-btn {
        display: flex;
    }

    .navContainer {
        display: none;
    }

    .header-bar {
        margin-bottom: 30px;
    }

    td {
        font-size: 0.9rem;
    }


}