/* Custom checkbox styling */
.clenstvi-favorites-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #052a45;
    margin: 10px 0;
    padding: 10px 12px;
    background-color: #F5F5F5;
    border-radius: 16px;
    width: max-content;
}

.clenstvi-favorites-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.clenstvi-favorites-checkmark {
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin-right: 8px;
    position: relative;
    flex-shrink: 0;
}

.clenstvi-favorites-checkbox:hover .clenstvi-favorites-checkmark {
    background-color: #f0f0f0;
}

.clenstvi-favorites-input:checked ~ .clenstvi-favorites-checkmark {
    background-color: #03b222; /* WordPress blue */
    border-color: #03b222;
}

.clenstvi-favorites-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.clenstvi-favorites-input:checked ~ .clenstvi-favorites-checkmark:after {
    display: block;
}

.clenstvi-favorites-checkbox .clenstvi-favorites-checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}