@charset "utf-8";
/* 편집하기 전에 <사용자화된 CSS 활성화> 옵션이 켜져 있는지 확인하십시오. 이 줄 아래에 사용자화 스타일 시트 코드를 입력하면 됩니다. */
/* 티스토리 마크다운 표 - 제목셀 강조 스타일 */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
    border-top: 2px solid #555; /* 상단 선은 조금 더 진하게 */
    border-bottom: 1px solid #ddd;
}

/* 제목셀(th) 설정 */
.entry-content table th {
    background-color: #f2f2f2 !important; /* 은은한 그레이 배경 */
    color: #333;
    font-weight: 600;
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ddd;
}

/* 일반셀(td) 설정 */
.entry-content table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    color: #555;
}

/* 마지막 열은 오른쪽 테두리 제거 */
.entry-content table th:last-child,
.entry-content table td:last-child {
    border-right: none;
}

/* 첫 번째 열(항목명)에 아주 연한 배경색 추가 (선택사항) */
.entry-content table td:first-child {
    background-color: #fafafa;
    color: #333;
    font-weight: 500;
}
