body {
    padding-top: 80px;
}

.box {
    border-radius: 6px;
    border: 1px solid gray;
    padding: 15px 15px;
}

.box .title {
    text-align: center;
    font-size: 200%;
    margin-bottom: 30px;
}

.box form > * {
    margin-top: 15px;
}

li.nav-item a.nav-link.inactive-navlink {
    color: white;
}

li.nav-item a.nav-link.active-navlink {
    color: #aaa;
}

/*
tr:hover {
    background: orange !important;
}

tr:active:hover {
    background: green !important;
}

tr:hover td {
    background: transparent;
}
*/

tr:hover td {
    background: #A2D9CE;
}

tr:active:hover td {
    background: #73C6B6;
}

tr:hover th {
    background: white;
}

@media screen and (min-width: 900px) {
    .post_select {
        width: 300px;
    }

    .entry_form {
        width: 500px;
    }
}

@media screen and (max-width: 900px) {
    .post_select {
        width: 100%;
    }

    .entry_form {
        width: 100%;
    }
}

/* Pagination: https://www.w3schools.com/css/css3_pagination.asp */
.paginator {
    display: inline-block;
}

.paginator a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #ddd;
}

.paginator a.active {
    background-color: #53A451;
    color: white;
    border: 1px solid #53A451;
}

.paginator a:hover:not(.active) {
    background-color: #ddd;
}
