/* 後台樣式覆寫（載入順序需在 backstrap bundle 之後） */

/*
 * Noty warning 通知預設為黃底(#ffc107)配近白色文字(#f9fbfd)，對比過低看不清楚。
 * 改為深色文字並加深邊框，維持黃色語意但確保可讀性。
 */
.noty_theme__backstrap.noty_type__warning {
    color: #4d3c00;
    background-color: #ffc107;
    border-color: #c79100;
}

.noty_theme__backstrap.noty_type__warning .noty_close_button {
    color: #4d3c00;
}

/*
 * Backstrap 的 .alert-warning 預設為黃底(#ffc107)配近白色文字(#fffdf5)，對比過低看不清楚。
 * 改為較柔和的黃底與深色文字（沿用 Bootstrap 標準警告配色），確保可讀性。
 */
.alert-warning {
    color: #664d03 !important;
    background-color: #fff3cd !important;
    border-color: #ffe69c !important;
}

.alert-warning a,
.alert-warning .alert-link {
    color: #4d3c00 !important;
    text-decoration: underline;
}

/*
 * Backstrap 的 .alert-secondary 預設為淺灰底(#d9e2ef)配近白色文字(#fdfefe)，對比過低看不清楚。
 * 改為深色文字確保可讀性。
 */
.alert-secondary {
    color: #384056 !important;
    background-color: #e2e6ee !important;
    border-color: #c9d2df !important;
}

.alert-secondary a,
.alert-secondary .alert-link {
    color: #2a3142 !important;
    text-decoration: underline;
}