body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

.custom-select2 {
    position: relative;
    width: 100%;
}

.search-box {
    width: 100%;
    padding: 15px;
}

.dropdown-list {
    position: absolute;
    width: 100%;
    border: 1px solid #ccc;
    background: #ffeadb;
    max-height: 418px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 14%);
    font-weight: 600;
}

.item {
    padding: 12px 10px;
    cursor: pointer;
    border: 1px solid #ffcfaf;
}

.item:hover {
    background-color: #ff6600;
    color: #fff;
}

.item.selected {
    background-color: #03ff04; /* SeÃ§ili item'in rengi */
    font-weight: bold;
}

.item.selected:hover {
    color:#000;
}

.selected-items {
    border: 1px solid #ccc;
    padding: 10px;
    background: #f9f9f9;
    min-height: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.selected-item {
    font-weight: 600;
    padding: 5px 40px;
    margin: 5px 0;
    background: #03ff04;
    border: 1px solid #a3cfbb;
    cursor: grab;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-btn {
    font-weight: 800;
    background: #dc3545;
    color: white;
    border: none;
    padding: 2px 5px;
    cursor: pointer;
    transition: linear 0.3s;
    position: absolute;
    height: 35px;
    width: 30px;
    left: 10px;
}

.remove-btn:hover{
    background: #000000;
}

.selected-item.drag-over {
    border: 2px dashed #ff6600;
    background-color: #fff8e1;
    transition: background-color 0.3s, border-color 0.3s;
}