#menu-div{
    position:absolute;
    top:0;
    right:0;
    z-index: 1400
}
.menu-div {
    border: 1px solid #ccc;
    padding: 20px 20px 15px 20px;
    width: 200px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
}

.menu-close-btn {
    position: absolute;
    top: 6px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #a6a6a6;
}

.menu-close-btn:hover {
    color: #000;
}

.menu-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.menu-separator {
    border: none;
    border-top: 1px solid #ccc;
    margin: 0 0 15px 0;
}

.menu-search-input {
    width: 100%;
    padding: 8px 12px 8px 32px;
    background: url("data:image/svg+xml,%3Csvg fill='gray' xmlns='http://www.w3.org/2000/svg' height='16' viewBox='0 0 24 24' width='16'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C8.01 14 6 11.99 6 9.5S8.01 5 10.5 5 15 7.01 15 9.5 12.99 14 10.5 14z'/%3E%3C/svg%3E") no-repeat 8px center;
    background-size: 16px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.menu-checkbox-group {
    margin-bottom: 15px;
}

.menu-checkbox-group label {
    display: block;
    margin-bottom: 4px;
}

.menu-actions {
    margin-top:20px;
    display: flex;
    justify-content: space-between;
}

.menu-button {
    padding: 6px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.menu-reset-btn {
    background-color: #eee;
}

.menu-apply-btn {
    background-color: #007BFF;
    color: white;
}

.menu-div-closed{
    visibility:hidden;
    max-height:0px;
    height:0;
    overflow:hidden;
}
.menu-div-opened{
    visibility:visible;
}