.ms-container {
    position: relative;
    width: 250px;
    font-family: Verdana;
    font-size: 11px;
}

.ms-input-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.ms-input {
    flex: 1;
    border: 1px solid #333;
    background: #deecfd;
    padding: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    cursor: pointer;
}

.ms-arrow {
    position: absolute;
    right: 8px;
    font-size: 10px;
    pointer-events: none;
}

.ms-tag {
    background: #1967D2;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
}

.ms-placeholder {
    color: #666;
}

.ms-dropdown {
    position: absolute;
    background: #DEECFD;
    border: 1px solid #BABABA;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    max-height: 220px;
    overflow: auto;
    z-index: 999999;
}

.ms-option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding: 6px;
}

.ms-option label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    text-align: left;
}

.ms-option input {
    margin: 0;
}

.ms-option:hover {
    background: #1967D2;
    color: white;
}

.ms-option:hover label {
    color: white;
}

.ms-disabled {
    opacity: 0.6;
}

.ms-disabled .ms-input {
    cursor: not-allowed;
}

.hidden {
    display: none;
}
