.ms-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    padding-bottom: 15px;
    padding-top: 15px;
    border: 3px solid #2E4947;
    border-radius: 6px;
    background: #D8D7D4;
    cursor: pointer;
    min-height: 44px;
    user-select: none;
}

.ms-arrow {
    font-size: 24px;
    color: #555;
    transition: transform 0.2s;
    padding-right: 20px;
}

.ms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.ms-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #8fa07a;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.ms-tag-remove {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.ms-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #e8e8e0;
    border: 1px solid #c5c9b8;
    border-radius: 6px;
    z-index: 999;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
}

.ms-dropdown.open {
    display: block;
}

.ms-option {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ms-option:hover {
    background: #d8d8d0;
}

.ms-option.selected {
    color: #4a6035;
    font-weight: 500;
}

.ms-check {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 11px;
}

.ms-option.selected .ms-check {
    background: #6b8a52;
    border-color: #6b8a52;
    color: #fff;
}

.ms-wrap {
    position: relative;
    width: 100%;
}