/**
 * 部门选择器行样式调整
 * 使部门选择器和货币下拉框向上移动2px
 */

/* 部门选择器和货币余额行 */
.select-currency-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    align-items: stretch;
    padding: 4px 4px 0 4px;
    margin-top: -2px; /* 向上移动2px */
}

/* 部门选择器包装器 */
.simple-select-wrapper {
    flex: 1 1 50%;
    max-width: 50%;
    padding-right: 5px;
    position: relative;
}

/* 货币下拉框 */
.currency-dropdown {
    flex: 1 1 50%;
    max-width: 50%;
    padding-left: 5px;
}

/* 确保下拉箭头位置正确 */
.simple-select-wrapper i.bi-chevron-down {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #6c757d;
    pointer-events: none;
} 