﻿.multi-select-container {
    position: relative;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-height: 30px;
    align-items: center;
}

.placeholder {
    color: gray;
    font-size: 14px;
}

.selected-item {
    background: #1b84ff;
    color: white;
    padding: 5px 8px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

    .selected-item span {
        margin-left: 5px;
        cursor: pointer;
        font-weight: bold;
    }

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    background: white;
}

    .dropdown input {
        width: 100%;
        padding: 8px;
        border: none;
        border-bottom: 1px solid #ccc;
        outline: none;
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .dropdown div {
        padding: 8px;
        cursor: pointer;
    }

        .dropdown div:hover {
            background: #00ffff7a;
        }

[data-bs-theme="dark"] .dropdown {
    background: black;
    color: white;
    border-color: #555;
}
