/* Checkbox styling for selected state — match photos.css pattern */
#page_search .checkbox-wrapper .checkbox-custom-label {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: white;
    cursor: pointer;
    visibility: hidden;
    position: relative;
}

#page_search .gridElem:hover .checkbox-wrapper .checkbox-custom-label,
#page_search .gridElem.forced-selected-active .checkbox-wrapper .checkbox-custom-label {
    visibility: visible;
}

#page_search .checkbox-custom:checked + .checkbox-custom-label {
    background-color: #000;
    border-color: #000;
}

#page_search .checkbox-custom:checked + .checkbox-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
