/* 컨설팅 서비스 비교 페이지 스타일 */

/* 테이블 기본 스타일 */
.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #212529 !important;
}

/* 컬러 테이블 헤더 스타일 */
.table-dark th,
.table-primary th,
.table-success th,
.table-info th,
.table-warning th,
.table-secondary th {
    color: #212529 !important;
}

/* 테이블 컨테이너 스타일 */
.table-responsive {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

/* 테이블 캡션 스타일 */
caption {
    color: #333;
    padding-left: 0;
    caption-side: top;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* 테이블 호버 효과 */
.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.02);
}

/* 배지 스타일 */
.badge {
    padding: 8px 12px;
    font-size: 16px;
}

/* 테이블 셀 정렬 */
.table td.text-end,
.table th.text-end {
    text-align: right !important;
}

.table td.text-center,
.table th.text-center {
    text-align: center !important;
}