
/*# sourceMappingURL=custom.min.css.map */






.submenu {
    padding-left: 20px;
    display: none;
}

.submenu a {
    padding: 8px;
    font-size: 16px;
    color: white;
    display: block;
    transition: 0.3s;
}

.submenu a:hover {
    background-color: #555;
}

.arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.submenu.active {
    display: block;
}

.submenu.active .arrow {
    transform: translateY(-50%) rotate(180deg);
}

#content {
    margin-left: 250px;
    padding: 20px;
}
.arrow-size{
    width: 12px;
}

.accordion-button::after {
    display: none !important;
}


.accordion-button {
    padding-right: 2rem; 
    text-align: left; 
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: red;
    color: white;
    border: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-btn:hover {
    background: darkred;
}