
.admin-menu-main
{
    position: relative;
    float: right;
    min-height: 100px;
    z-index: 1000;
    color: white;
    text-align: center;
    padding: 2px;
}

.admin-menu-main, .admin-menu
{
    min-width: 220px;
    width: auto;
    min-height: 100%;
    height: 100%;
    background-color: #23282d;
}

.admin-menu-main > ul
{
    border-radius: 5px;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.admin-menu-main > ul li
{
    display: flex;
    list-style: none;
    height: 40px;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 3px; */
    padding: 0px;
}

.admin-menu-main > li:hover
{
    background-color: lightseagreen;
    cursor: pointer;
}

.admin-menu-main > ul > li > a
{
    /* background: red; */
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}

.admin-menu-main > ul > li > a:hover
{
    color: lightgray;
    background-color: lightseagreen;
}

.admin-menu-main > hr
{
    background-color: white;
    padding: 0px;
    margin-bottom: 2px;
    margin-top: 2px;
}