.custom-dropdown-menu {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    text-align:center;
}
.custom-dropdown-menu-button {
    background-color: #3c4858;
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    transition: background-color 0.2s ease;
}
    .custom-dropdown-menu-button:hover {
        background-color: #272f3a;
        color: #fff;
    }
.custom-dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #3c4858;
    border: 1px solid #272f3a;
    border-radius: 8px;
    display: none;
    z-index: 10;
    width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2px;
}
/*[dir="rtl"] .custom-dropdown-menu-list {
    right: 0;
}*/

.custom-dropdown-menu-list li {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

        .custom-dropdown-menu-list li:last-child {
            border-bottom: none;
        }

    .custom-dropdown-menu-list a {
        display: block;
        text-decoration: none;
        color: #ccc;
        transition: color 0.2s ease;
    }

        .custom-dropdown-menu-list a:hover {
            color: #fff;
        }

    .custom-dropdown-menu-list.is-open {
        display: block;
    }
@media (max-width: 991.9px) {
    .custom-dropdown-menu-button {
        padding: 10px 8px;
    }
}