.logo img {
    height: 35px;
    width: auto;
}

/* 主視覺區塊 */
.hero {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 讓圖片滿版顯示 */
.hero img {
    width: 100%;
    height: auto;
    display: block;
}

#div-title-info {
    background: #D5F2F6;
}

.container {
    max-width: 800px;
    margin-top: 30px;
    font-weight: bold;
}
.card, .my-card {
    margin-bottom: 20px;
}
.card {
    border: none;
}
.card .card-header {
    background-color: unset;
    border: none;
}
.card-body {
    padding-top: 0px;
}

.form-control {
    border-width: 3px;
    border-color: #D5F2F6;
}

.icon-text {
    display: flex;
    align-items: flex-start;
}
.icon-text img {
    height: 1.2em;
    margin-right: 10px;
    vertical-align: middle;
}
.dot-text::before {
    content: "•"; /* 使用圆点符号 */
    font-size: 2em; /* 圆点的大小 */
    margin-right: 10px; /* 圆点与文字之间的间距 */
    vertical-align: middle; /* 垂直对齐 */
    color: #5DE1FC;
}
/*============================================================================================================*/
/* Loading 遮罩 */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* 旋轉 Loading 圖案 */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.2);
    border-top-color: #007BFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.show-loading {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

pre 
{
    white-space: pre-wrap;  /* ✅ 允許自動換行 */
    word-wrap: break-word;  /* ✅ 避免過長單字溢出 */
    max-width: 100%;       /* ✅ 限制最大寬度 */
    overflow-x: auto;      /* ✅ 超出範圍時，允許水平滾動 */
    background: #f4f4f4;   /* ✅ 淺灰背景 */
    padding: 10px;         /* ✅ 增加內距 */
    border-radius: 5px;    /* ✅ 圓角邊框 */
    border: 1px solid #ddd; /* ✅ 淡灰色邊框 */
    font-family: monospace; /* ✅ 使用等寬字體 */
}
