/* VISION 2026 企業參訪專屬樣式表 */
#v26-visit-wrapper {
    max-width: 960px;
    margin: 40px auto;
    font-family: 'Microsoft JhengHei', sans-serif;
    color: #333;
}

/* 標題區 */
.visit-header-box {
    background: linear-gradient(135deg, #EBF5FF, #F4F0FF);
    border-left: 6px solid #00A3FF;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.1);
}

.visit-header-box h2 {
    font-size: 24px;
    color: #003366;
    font-weight: bold;
    margin: 0;
}

/* 佈局容器 */
.visit-content-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* 左側海報區 */
.visit-poster-side {
    flex: 1;
    min-width: 300px;
    background: #F8FAFD;
    padding: 15px;
    border-radius: 20px;
    border: 1px solid #EAF2F8;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.visit-poster-title {
    font-weight: bold;
    color: #003366;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 1px;
}

.visit-poster-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
    border: 1px solid #EEE;
}

.visit-poster-hint {
    font-size: 12px;
    color: #00A3FF;
    margin-top: 12px;
    font-weight: bold;
}

/* 右側表格區 */
.visit-table-side {
    flex: 1.5;
    min-width: 350px;
}

.visit-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #EAF2F8;
    box-shadow: 0px 10px 40px rgba(0, 163, 255, 0.12);
}

.visit-table thead tr {
    background: linear-gradient(90deg, #78B9F6, #B68FD8);
}

.visit-table th {
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    border: none;
    width: 50%;
}

.visit-table td {
    padding: 40px 20px;
    text-align: center;
    background: #FFF;
}

.visit-table td:first-child {
    border-right: 1px solid #F0F4F8;
}

/* 內容標籤與按鈕 */
.visit-tag {
    display: inline-block;
    background: #FFF9E6;
    color: #B38F00;
    border: 1px solid #FFC107;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    padding: 3px 12px;
    border-radius: 6px;
}

.visit-company-name {
    display: block;
    font-size: 24px;
    color: #003366;
    margin-bottom: 12px;
    font-weight: 800;
}

.visit-reg-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00A3FF, #007BFF);
    color: #ffffff !important;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 163, 255, 0.3);
    transition: transform 0.2s;
}

.visit-reg-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* 底部提醒框 */
.visit-notice-box {
    margin-top: 20px;
    padding: 15px;
    background: #F0F7FF;
    border-radius: 12px;
    font-size: 14px;
    color: #556677;
    line-height: 1.6;
    border: 1px solid #E1EEFF;
}

.visit-notice-box p {
    margin: 0;
}