.aside-option-window{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    background-color: rgba(30,0,60,0.9);
    border-radius: 10px;
    border: 2px solid rgba(80,0,125,0.8);
    padding: 20px 40px;
    width: 85%;
    height: 75%;
    display: flex;
    flex-direction: column;
}
.aside-option-window .table-wrapper{
    flex: 1;
    overflow-y: auto;
    max-height: 100%;
}
.aside-option-window .table-wrapper table{
    width: 100%;
    background-color: rgba(50,0,90,0.4);
    border: 2px solid rgba(150,100,255,0.7);
    border-radius: 10px;
    padding: 5px 10px;
}
.aside-option-window .table-wrapper table th, td{
    text-align: center;
    font-size: 1.25em;
}
.aside-option-window .table-wrapper table tbody td{
    background-color: rgba(60,0,100,0.4);
    border: 2px solid rgba(150,100,255,0.5);
    border-radius: 10px;
}
.aside-option-window .table-wrapper table td a{
    color: white;
    text-decoration: none;
    transition: color ease 0.3s, text-decoration ease 0.3s;
    text-decoration: underline solid transparent;
}
.aside-option-window .table-wrapper table td a:hover{
    color: rgb(150,100,255);
    cursor: pointer;
    text-decoration: underline solid rgb(150,100,255);
}
.aside-option-window .table-wrapper table th, td{
    padding: 5px 10px;
}

.aside-option-window .admin-panel-container{
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    max-height: 100%;
    padding: 10px;
}
.aside-option-window .admin-panel-container .admin-panel-section{
    box-sizing: border-box;
    width: 100%;
    padding: 5px 10px;
    border-radius: 10px;
    transition: background-color ease 0.5s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.admin-panel-section-folded{
    background-color: rgba(50,0,90,0.4);
}
.admin-panel-section-folded:hover{
    background-color: rgba(70,0,120,0.8);
    cursor: pointer;
}
.admin-panel-section-unfolded{
    background-color: rgba(50,0,90,0.4);
}