﻿.flex-form .form_grp .address select option {
    text-align: unset;
}

.scroltable-container {
    padding-right: unset;
}

.flex-form .form_grp {
    border-bottom: unset;
}

.tip {
    margin-top: 1.5em;
}

.resultBoard {
    margin: 1.5em 0px 1.5em 0;
    border-bottom: 1px dashed #DDD;
}

.buttons {
    font-size: 85%;
    margin-top: 1.5em;
}

#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* 調整選擇框的外觀， */
.select2-container .select2-selection--single {
    min-height: 45px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    background-color: #fff;
}

/* 文字垂直置中 */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: normal;
    padding-left: 0;
    color: #333;
}

/* 調整下拉箭頭 */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

/* 外框樣式變化 */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border: 1px solid #3399ff !important;
    box-shadow: 0px 0px 0px 2px #3399ff !important;
    outline: none !important;
}

/* 處理 Disabled 禁用狀態*/
.flex-form .form_grp .select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e9ecef;
    cursor: not-allowed;
    border: 1px solid #ccc;
}

/* 讓禁用狀態下的文字顏色變淺 */
.flex-form .form_grp .select2-container--default.select2-container--disabled .select2-selection__rendered {
    color: #6c757d;
}

/* 搜尋框的基本樣式 */
.select2-container--default .select2-search--dropdown .select2-search__field {
    width: stretch;
    padding: 4px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

    /* 搜尋輸入框被 Focus 時的樣式 */
    .select2-container--default .select2-search--dropdown .select2-search__field:focus {
        border: 1px solid #3399ff !important;
        box-shadow: 0px 0px 0px 2px #3399ff !important;
        outline: none !important;
    }

.select2-container--default .select2-search--dropdown .select2-search__field {
    width: -webkit-fill-available; /* 支援 Chrome, Safari, Edge */
    width: -moz-available; /* 支援 Firefox */
    width: stretch; /* 標準寫法  */
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
