body {
    background-color: #F5F7F9;
}
.main-section {
    position: relative;
    margin-top: 40px;
    height: calc(100vh - 80px);
    display: flex;
}

.main-section .dashboard {
    position: relative;
    min-width: 230px;
    max-width: 300px;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.dashboard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard ul li {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* kulcsfontosságú: a tartalom két szélre */
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    margin-bottom: 10px;
}

.dashboard ul li .left-content {
    display: flex;
    align-items: center;
}

.dashboard ul li .left-content i {
    margin-right: 10px;
    font-size: 18px;
    background: white;
    border-radius: 15px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard ul li .right-icon {
    font-size: 18px;
}


.dashboard ul li:hover,
.dashboard ul li.active {
    background-color: black;
    color: white;
}

.dashboard ul li:hover i,
.dashboard ul li.active i {
    color: black; /* az ikon marad fekete */
}
.dashboard ul li:hover .right-icon,
.dashboard ul li.active .right-icon {
    color: white;
}



ul.submenu li {
    position: absolute;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 8px 0;
    color: #333;
    cursor: pointer;
    border-radius: 20px;
    height: 0px;
    width: 0px;
}

.dashboard ul.submenu {
    margin-top: 5px;
}

.dashboard ul.submenu li {
    padding: 8px 10px;
    border-radius: 20px;
    margin-left: 40px;
    cursor: pointer;
    transition: 0.2s;
}

.dashboard ul.submenu li:hover {
    background-color: black;
}

ul.submenu.show li {
    height: auto;
    width: auto;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}