.io-select-container {
    position: relative;
    width: 300px;
    font-family: sans-serif;
}

.io-select-box {
    border: 1px solid #ccc;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 38px;
}

.io-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    flex: 1;
}

.io-placeholder {
    color: #aaa;
    font-size: 14px;
}

.io-tag {
    background: #007bff;
    color: white;
    padding: 3px 6px;
    border-radius: 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.io-remove {
    cursor: pointer;
    margin-left: 4px;
    font-weight: bold;
}

.io-arrow {
    font-size: 10px;
    margin-left: 8px;
}

.io-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: white;
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 4px;
    margin-top: 2px;
    padding: 6px;
}

.io-dropdown.hidden {
    display: none;
}

.io-search {
    width: 100%;
    padding: 5px;
    margin-bottom: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.io-options {
    list-style: none;
    margin: 0;
    padding: 0;
}

.io-option {
    padding: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.io-option:hover {
    background: #f1f1f1;
}
