/* LOGIN BUTTON */

.login {
    background: #86c232;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 15px;
    text-decoration: none;
}

.login:hover {
    background: #78ad2d;
    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;
}

/* LOGOUT BUTTON */


.logout:hover {
    background: #6e3537;
    border-bottom: 1px solid #6e3537;
    transition: all .2s ease-in-out;
    color: white;
}

/* INDEX BUTTON */

.indexbuttons {
    display: flex;
    justify-content: end;
    overflow: hidden;
}

.buttonindex {
    justify-content: space-between;
    padding-top: 35px;
    overflow: hidden;
}


/* STATUS BUTTON */

.index-button:hover{
    background: #73522a;
    border-bottom: 1px solid #73522a;
    transition: all .2s ease-in-out;
    color: white;
}

.status-button:hover{
    background: #1d9e0b;
    color: white;
}

/* DASHBOARD BUTTON */

.dashbutton:hover{
    background: #43437a;
    border-bottom: 1px solid #43437a;
    transition: all .2s ease-in-out;
    color: white;
}

/* EDIT POST BUTTON */

.edit-post-button:hover{
    background: #4a9e29;
    border-bottom: 1px solid #4a9e29;
    transition: all .2s ease-in-out;
    color: white;
}

/* SAVE POST BUTTON */

.save-post-button:hover{
    background: #285416;
    border-bottom: 1px solid #285416;
    transition: all .2s ease-in-out;
    color: white;
}

/* BAN- USERLIST BUTTON */

.banlist-button:hover{
    background: #cf0851;
    border-bottom: 1px solid #cf0851;
    transition: all .2s ease-in-out;
    color: white;
}

.userlist-button:hover{
    background: #804b05;
    border-bottom: 1px solid #804b05;
    transition: all .2s ease-in-out;
    color: white;
}

/* ADMIN PANEL BUTTON */

.admpanel-button, .dashbutton, .changelog-button, .logout, .status-button, .index-button, .banlist-button, .userlist-button, .edit-post-button, .save-post-button {
    text-decoration: none;
    display: inline-block;
    color: #c9c9c9;
    padding: 15px;
    border-bottom: 1px solid #c9c9c9;
    border-radius: 0.5em;
    margin: 5px;
}

.admpanel-button:hover{
    /*background: #31ad31;*/
    background: #3b693d;
    border-bottom: 1px solid #3b693d;
    transition: all .2s ease-in-out;

    color: white;
}

.changelog-button:hover{
    /*background: #31ad31;*/
    background: #54437a;
    border-bottom: 1px solid #54437a;
    transition: all .2s ease-in-out;

    color: white;
}

/* KICK BUTTON */

.kickbutton a {
    background: #941631;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 15px;
    text-decoration: none;
}

.kickbutton 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;
}