.wccf-wrap {
    position: relative;
    margin: 0 0 18px 0;
    font-size: 14px;
}

.wccf-label {
    font-weight: 600;
    font-size: 14px;
    color: #3C8A3F;
    margin-bottom: 6px;
}

.wccf-selected-text {
    font-size: 13px !important;
}

.wccf-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    background: #fff !important;
    font-weight: 100;
    color: #000 !important;
    border: 1px solid #e5e7eb;
    border-radius: 10px !important;
    padding: 8px 12px;
    cursor: pointer;
    min-height: auto !important;
}

.wccf-toggle:hover {
    border: 1px solid #6c757d;
}

.wccf-toggle:focus {
    outline: none !important;
    border: 1px solid #6c757d;
    outline-offset: 2px;
}

.wccf-dropdown {
    position: absolute;
    z-index: 50;
    left: 0;
    right: 0;
    margin-top: 0;
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    padding: 8px;
}

.wccf-search {
    position: relative;
    margin-bottom: 8px;
}

.wccf-search-input {
    width: 100% !important;
    border: 1px solid #e5e7eb!important;
    border-radius: 8px!important;
    padding: 6px 24px 6px 8px!important;
    font-size: 13px!important;
    height: auto!important;
    min-height: auto !important;
}

.wccf-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-33%);
    color: #6c757d;
    font-size: 12px!important;
}

.wccf-list {
    max-height: 240px;
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wccf-item {
    padding: 8px 0 2px 0;
    margin: 0 0 8px 0;
    font-size: 13px;
}

.wccf-item:hover {
    background: #eeeeee;
}

.wccf-item label {
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
}

.wccf-item-all {
    border-bottom: 1px solid #eeeeee;
    padding: 8px 0 2px 0;
    margin: 0 0 8px 0;
    font-size: 13px;
}

.wccf-item input[type="checkbox"] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    accent-color: #4caf50;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #4caf50;
    background-color: #fff;
    cursor: pointer;
}

.wccf-item input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    font-size: 10px;
    line-height: 23px;
    border-radius: 4px;
    background-color: #4caf50;
    color: #fff;
    font-family: auto, sans-serif;
}

.wccf-count {
    margin-left: 4px;
    font-size: 12px;
    color: #999;
}

/* Default state */
.wccf-caret {
    display: inline-block;
}

.wccf-toggle[aria-expanded="true"] .wccf-caret i {
    transform: rotate(180deg);
}