
.banbox {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr))!important;
    grid-auto-rows: auto;
}

.banbox_title {
    background: #202020; 
    border-radius: 15px;
    padding: 10px;
    margin: 10px;
    text-align: center;
}


.banbox_content {
    padding: 10px;
    background: #141414 !important;
    margin: 10px;
    border-radius: 5px;
}

.banbox_content:hover {
    background: #181818 !important;
}

.banbox_info {
    background: #202020;
    padding: 10px;
}

.banbox_avatar {
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
}

.unbanbutton a {
    background: #3a9416;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 15px;
    text-decoration: none;
}

.unbanbutton a:hover{
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3), inset 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding-left: 20px;
    padding-right: 20px;
    transition: all .3s ease-in-out;
}