table.info-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-table th {
    background-color: #f2f2f2;
    text-align: left;
    padding: 12px 16px;
    width: 100%;
    color: #333;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    white-space: nowrap; 
}

.info-table td {
    padding: 12px 16px;
    min-width:300px;
    color: #444;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child td,
.info-table tr:last-child th {
    border-bottom: none;
}
/* 跑馬燈動畫樣式 */
.marquee-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    overflow: hidden;
    flex-wrap: nowrap;
}

.marquee-img {
    height: 24px;
}

/* 容器 */
.marquee-box {
    position: relative;
    overflow: hidden;
    max-width: 20rem;
    white-space: nowrap;
    height: 1.5rem;
}

/* 跑馬燈內容 */
.marquee-container {
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
  background: rgba(16, 162, 210, .1);
  border-radius: 3rem;
    padding: 0.35rem 1rem;
    gap: 0.5rem;
}
.marquee-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.marquee-container .btn-lightb {
  background: #10a2d2;
  color: #fff;
  margin-left: .25rem;
}
.marquee-track-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-width: 370px;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.marquee-button {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .marquee-container {
        display: none;
    }

    .marquee-track-wrapper {
        width: 100%;
    }
}
#ajaxLoadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4); /* 半透明黑底 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    #ajaxLoadingOverlay img {
        width: 80px; /* 根據你的 gif 調整 */
        height: 80px;
    }