﻿.chosen {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* kutular arası boşluk */
    justify-content: flex-start; /* soldan başlat */
    align-items: center;
}

.chosen-item {
    background-color: #fff5e6; /* tema uyumlu hafif sarı kutu */
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

    .chosen-item .icon-close {
        margin-left: 5px;
        cursor: pointer;
    }

.custom-checkbox-wrapper {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
    font-family: inherit;
    font-size: 14px;
    color: inherit;
}

    .custom-checkbox-wrapper input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        height: 0;
        width: 0;
    }

    .custom-checkbox-wrapper label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border: 2px solid #28a745;
        border-radius: 4px;
        background-color: #fff;
        transition: all 0.2s;
        box-sizing: border-box;
    }

    .custom-checkbox-wrapper label:hover::before {
        border-color: #218838;
    }

    .custom-checkbox-wrapper input[type="checkbox"]:checked + label::before {
        background-color: #28a745;
        border-color: #28a745;
        background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M6 10.17l-2.59-2.58-1.42 1.42L6 13 14 5l-1.41-1.42z"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 12px 12px;
    }

@media (max-width: 576px) {
    .custom-checkbox-wrapper {
        padding-left: 28px;
        font-size: 13px;
    }

        .custom-checkbox-wrapper label::before {
            width: 16px;
            height: 16px;
            background-size: 10px 10px;
        }
}