/* 상담안내 테이블 스타일 */
.consultation-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #ffffff;
    border: 1px solid #ccc;
    font-family: var(--font-primary);
}

.consultation-table th,
.consultation-table td {
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #ccc;
    vertical-align: middle;
}

.consultation-table th {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.consultation-table td {
    background: #ffffff;
    color: #000000;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 전화번호 스타일링 */
.consultation-phone {
    font-weight: 500;
    color: #333333;
}

.consultation-hours {
    color: #666666;
    font-size: 0.9rem;
}

/* 모바일 번호 스타일링 */
.consultation-mobile {
    font-weight: 500;
    color: #333333;
}

.consultation-mobile-separator {
    color: #999999;
    margin: 0 8px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .consultation-table {
        font-size: 0.9rem;
    }
    
    .consultation-table th,
    .consultation-table td {
        padding: 12px 15px;
    }
    
    .consultation-table th {
        font-size: 0.9rem;
    }
    
    .consultation-table td {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .consultation-table {
        font-size: 0.8rem;
    }
    
    .consultation-table th,
    .consultation-table td {
        padding: 10px 12px;
    }
    
    .consultation-table th {
        font-size: 0.8rem;
    }
    
    .consultation-table td {
        font-size: 0.75rem;
    }
}

/* 호버 효과 */
.consultation-table tbody tr:hover {
    background: #f8f9fa;
}

.consultation-table tbody tr:hover th,
.consultation-table tbody tr:hover td {
    background: #f8f9fa;
}

/* 고대비 모드 지원 */
@media (prefers-contrast: high) {
    .consultation-table {
        border: 2px solid #000000;
    }
    
    .consultation-table th,
    .consultation-table td {
        border: 2px solid #000000;
        color: #000000;
    }
    
    .consultation-table th {
        background: #ffffff;
        font-weight: 700;
    }
}
