body {
    background-color: rgb(252,243,245);
    font-family: "微軟正黑體";
}

.container{
    min-width:80vw;
}

.icon-flip {
    transform: scaleX(-1);
}

html:not([dir=rtl]) .breadcrumb-item + .breadcrumb-item::before {
    --cui-breadcrumb-divider: '>'
}

.breadcrumb-item a, .breadcrumb-item span {
    color: #EE8DA0;
}

    .breadcrumb-item a:link {
        text-decoration: none;
    }

.breadcrumb-item.active span {
    font-weight: bold;
}

.strokeText {
    color: white;
    font-weight: bold;
    letter-spacing:2px;
}

.strokeText::before {
    content: attr(data-storke);
    position: absolute;
    color: white;
    -webkit-text-stroke: 0.25em rgb(235,141,159);
    text-stroke: 10px rgb(235,141,159);
    z-index: -1;
}

/*文字綠框*/
.strokeText-F {
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
}

.strokeText-F::before {
    content: attr(data-storke);
    position: absolute;
    color: white;
    -webkit-text-stroke: 7px #86BCC2;
    z-index: -1;
}

.table thead{
    --cui-table-bg: rgb(240,244,248 );
}

/* 展开状态 */
.expandGroup .row:not(.expand-hide) {
    transition: all 0.25s ease; /* 过渡效果 */
}

.expandGroup .expand-hide {
    max-height: 0; /* 高度为 0，实现收缩 */
    opacity: 0; /* 透明度为 0，实现淡出 */
    visibility: hidden; /* 元素不可见，避免焦点等问题 */
}

.expandBtn:hover {
    cursor: pointer;
}

.fixed-confirm-footer {
    background-color: white;
    z-index: 1000;
    position: fixed;
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    bottom: 0px;
    width: 100vw;
}

.imgContainer {
    position: relative;
    overflow: hidden;
}

.imgZoomBtn {
    position: relative;
    top: 0%;
    left: 100%;
    transform: translate(-100%, -100%);
    border-radius:50%;
}


.textareaLabel {
    width: 100%;
    height: auto;
    resize: none; /* 禁用用户调整大小 */
    overflow: hidden; /* 隐藏滚动条 */
    box-sizing: border-box; /* 包括内边距 */
}

tr{
    vertical-align:middle;
}
td{
    text-align:center;
}
th {
    text-align: center;
}

.budget-container {
    display: flex;
    align-items: center; /* 垂直居中對齊 */
    justify-content: space-between; /* 左右分布對齊 */
    gap: 20px; /* 元素間距 */
    width: 100%; /* 確保容器占滿父容器 */
}

.budget-box {
    border: 2px dashed #f9b6b6;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    min-width: 120px;
    text-align: left; /* 文字靠左對齊 */
}

    .budget-box label {
        display: block;
        font-size: 1rem; /* 等於14px */
        color: #888;
        margin-bottom: 5px;
        text-align: left; /* 標籤靠左對齊 */
    }

.budget-amount {
    font-size: 1.5em; /* 等於24px */
    font-weight: bold;
    color: #000;
    text-align: left; /* 金額靠左對齊 */
}

.remaining-box {
    background-color: #f5f5f5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    min-width: 150px;
    margin-left: auto; /* 推動到最右側 */
    text-align: left; /* 整個框內文字靠左對齊 */
}

    .remaining-box label {
        display: block;
        font-size: 1em; /* 等於18px */
        color: #888;
        margin-bottom: 5px;
        text-align: left; /* 標籤靠左對齊 */
    }

.remaining-amount {
    font-size: 1.5em; /* 等於24px */
    font-weight: bold;
    color: #000;
    text-align: left; /* 金額靠左對齊 */
}