/* Main Module Styling */
.main-module {
    display: flex;
    align-items: center;
    padding: 10px 5px;
    background-color: white;
    border: 0px solid #ddd;
    cursor: pointer;
    margin-bottom: 0px;
    padding-left: 20px;
}

.main-module img {
    width: 27px;
    height: 27px;
    margin-right: 6px;
    margin-left: 1px;
}

.main-module h2 {
    margin: 0;
    font-size: 16px;
    color: #333;
    flex-grow: 1;
    font-family: 'Josefin Sans';
    font-weight: 400;
}

/* Chevron Styling */
.chevron {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.chevron.active {
    transform: rotate(180deg);
}

/* Sub-Modules Styling */
.sub-modules {
    display: none;
    padding: 0px;
    background-color: #fff;
    border: 0px solid #eee;
    margin-bottom: 10px;
}

.sub-module {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 24px;
    border-bottom: 0px solid #eee;
}

.sub-module:last-child {
    border-bottom: none;
}

.sub-module img {
    width: 20px;
    height: 20px;
/*    margin-right: 15px;*/
 margin-right: 8px;
}

.sub-module a {
    color: #0073e6;
    text-decoration: none;
    font-size: 16px;
    color: #555;
    font-family: 'Josefin Sans';
}

.sub-module a:hover {
/*    text-decoration: underline;*/

}

.sub-module:hover {
    background-color: #f0f0f0;
}


/* Show sub-modules when active */
.sub-modules.active {
    display: block;
}

/* Highlight current sub-module */
.sub-module.current-submodule {
    background-color: #f0f0f0;
}

.sub-module.current-submodule a {
    color: #000 !important;
/*    font-weight: 600;*/
}

/* Adjust chevron position */
/*.chevron {
    margin-left: auto; 
    padding-left: 15px; 
}*/