body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f7f7f7;
    padding: 12px;
}
.container {
    flex: 1;
    display: flex;
}
header {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}
.sidebar {
    width: 250px;
    min-width: 250px;
    padding: 10px;
    border-right: 2px solid #000;
}
.sidebar > nav,
.sidebar > nav > u,
.sidebar > nav > ul > li{
    width: 100%;
    background-color: unset;
}
.sidebar > nav > ul > li > a.active{
    color: #86a361;
    background-image: none;
    border-bottom-left-radius: 15px 3px;
    border-bottom-right-radius: 15px 5px;
    border-bottom: 5px solid #86a361;
    border-bottom-color: #86a361;
}
.sidebar > nav > ul > li{
    display: flex;
    height: 54px;
    justify-content: center;
    border: none;
    border-bottom: none;
    outline: none;
}
.sidebar > nav > ul > li > a{
    height: 32px;
}
.content {
    flex: 1;
    padding: 20px;
}
.main{
    padding: 0;
    margin: 0;
    max-width: 100%;
}
.auth-container-block{
    width: 100%;
}
.login-container {
    margin-top: 100px;
}
.login-form {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pagination {
    display: inline-block;
    margin-top: 20px;
}
.pagination a{
    transition: all 235ms ease 0s;
    box-shadow: 10px 19px 17px -13px rgba(0, 0, 0, .2);
    font-size: .75rem;
    padding: .5rem;
    border-bottom-left-radius: 15px 255px;
    border-bottom-right-radius: 225px 15px;
    border-top-left-radius: 255px 15px;
    border-top-right-radius: 15px 225px;
    color: #41403e;
    align-self: center;
    background-image: none;
    border: 2px solid #41403e;
    cursor: pointer;
    display: inline-block;
    outline: none;
}
.pagination a.active {
    background-color: #333;
    color: white;
    border: 1px solid #333;
}
.pagination a:hover:not(.active) {
    background-color: #ddd;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.pagination a:focus {
    outline: none;
}
.pagination a:first-child {
    margin-right: 10px;
}
.pagination a:last-child {
    margin-left: 10px;
}