.Select-menu-outer {
display : block !important;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;  /* Rounded corners */
    outline: none;
    margin-right: 5px;
    vertical-align: middle;
    cursor: pointer;
    background-color: #fff;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);  /* Subtle 3D effect */
    transition: background-color 0.2s, border-color 0.2s;
}

input[type="checkbox"]:checked {
    background-color: #325D88;
    border-color: #325D88;
}

input[type="checkbox"]:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

