/*
*,
*::before,
*::after {
    box-sizing: border-box;
}
*/
.page-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.submenu {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}


.menu-title {
    color: #ccc;
    font-weight: bold;
    margin: 10px 0px 5px 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #ccc;
}

.left-sidebar {
    width: 300px;
    position: relative;
}

.left-sidebar-content {
    color: #ccc;
    background-image: linear-gradient(to top, #111a29, #183451);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.left-sidebar a {
    color: #ccc;
    display: block;
    padding: 12px;
    text-decoration: none;
    border-radius: 4px;
}

.left-sidebar a:hover {
    background-color: #cccccc30;
    color: white;
    box-shadow: inset 0 -1px 0 #0080ff;
    box-shadow: inset 0 -1px 0 #cccccc;
    /*border-bottom: 1px solid #0080ff;*/
    /*box-shadow: inset 0px -20px 20px -20px #0080ff;*/
}

.left-sidebar a.active {
    background-color: #0080ff;
    color: white;
}

.main-content {
    flex: 1;
    /*display: flex;
    flex: 2;
    color: #ddd;
    padding: 10px 100px 40px 100px;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    text-align: center;
    margin: 10px;
    justify-content: center;*/
    /*
    background: #13335380;
    background-image: linear-gradient(to top, #05193780, #004d7a80);
    box-shadow: 0 0 5px #000000;*/
}

.right-sidebar {
    background: rgba(0, 0, 0, 0.0);
    /*background-color: #33333380;*/
    /*background-image: linear-gradient(#222222, #333333);*/
    /*box-shadow: 0 0 6px #0080ff;*/
    width: 300px;
}
/*
@media (max-width: 900px) {
    .page-content {
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }

    .left-sidebar,
    .right-sidebar,
    .main-content {
        width: 100%;
        margin: 5px 0;
    }

    .main-content {
        padding: 10px; 
    }
}


@media (max-width: 600px) {
    .main-content {
        font-size: 14px;
        padding: 10px 20px;
    }

    .left-sidebar,
    .right-sidebar {
        width: 100%;
        padding: 10px 0;
    }
}
*/