body, html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 320px;
}

.wallpapers {
    margin-bottom: 3rem;
}

.wallpapers__thumb {    
    display: flex;
    background: #f2f2f2;
    border-radius: 5px;
    height: 200px;
    justify-content: center;
}

.wallpapers__thumb__img {
    height: max-content;
    align-self: center;
    max-height: 200px;
    transition: 0.2s;
}

.wallpapers__thumb__img:hover {
    transform: scale(1.2);
}

.categories__menu {
    background-color: #212529;
}

.categories__menu__link {
    color:#fff;
    text-transform: uppercase;
}
.categories__menu__link:hover {
    background-color: #fff;
}

.table thead th {
    white-space: nowrap;
}

.table tbody tr:hover {
    background-color: #eee;
}

.table tbody tr td:last-child {
    white-space: nowrap;
}

.thumb {
    max-width: 150px;
}

.table-responsive {
    padding: 20px 0;
    border-top: 1px solid #ccc;
    margin-bottom: 20px;
}

.dataTables_length, .dataTables_filter, .dataTables_info, .dataTables_paginate {
    margin-bottom: 5px;
}

.form-control:focus, .page-link:focus {box-shadow: none;}

.form-group label { margin-bottom: .2rem; }
.form-group + .form-group { margin-top: .5rem; }

.g-recaptcha {margin-top: 20px}

@media only screen and (max-width: 768px) {
    div.dataTables_wrapper div.dataTables_info,
    div.dataTables_wrapper div.dataTables_length,
    div.dataTables_wrapper div.dataTables_filter {text-align: left;}

    div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
        padding-left: 0;
    }
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        justify-content: left !important;
    }
}

@media only screen and (max-width: 360px) {
    .btn.btn-success {
        font-size: 14px;
    }
    .admin_menu__link {
        width: 100%;
        margin-right: 0 !important;
    }
}