/**
 * History Timeline - Frontend Styles
 */

.ht-timeline-wrapper {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 헤더 */
.ht-timeline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #bababa;
}

.ht-timeline-title {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
}

.ht-timeline-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    background: #bd9b5c;
    margin-right: 10px;
}

.ht-period-label {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* 테이블 */
.ht-timeline-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 2px solid #ddd;
}

.ht-timeline-table tr {
    border-bottom: 1px solid #eee;
}

.ht-timeline-table tr:last-child {
    border-bottom: 2px solid #ddd;
}

.ht-timeline-table td {
    padding: 12px 15px;
    vertical-align: top;
}

/* 년도 셀 */
.ht-year-cell {
    width: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    border-right: 1px solid #eee;
}

/* 날짜 셀 */
.ht-date-cell,
.ht-timeline-table .ht-date-cell,
.ht-timeline-table td.ht-date-cell {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    text-align: center !important;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    color: #bd9b5c !important;
    padding: 12px 5px !important;
    box-sizing: border-box !important;
}

/* 내용 셀 */
.ht-content-cell {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* 반응형 */
@media (max-width: 768px) {
    .ht-timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .ht-timeline-title {
        font-size: 20px;
    }
    
    .ht-timeline-table {
        display: block;
    }
    
    .ht-timeline-table tbody {
        display: block;
    }
    
    .ht-timeline-table tr {
        display: flex;
        flex-wrap: wrap;
        padding: 15px 0;
    }
    
    .ht-year-cell {
        width: 100%;
        text-align: left;
        padding: 10px 15px;
        font-size: 20px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .ht-date-cell {
        width: 60px !important;
        min-width: 60px !important;
        max-width: 60px !important;
        text-align: center !important;
        color: #bd9b5c !important;
        padding: 10px 5px 5px !important;
        box-sizing: border-box !important;
    }
    
    .ht-content-cell {
        width: calc(100% - 90px);
        padding: 10px 15px 5px 0;
    }
}

/* 인쇄 스타일 */
@media print {
    .ht-timeline-wrapper {
        margin: 10px 0;
    }
    
    .ht-period-label {
        border: 1px solid #333;
        color: #333 !important;
        background: transparent !important;
    }
    
    .ht-timeline-table tr {
        page-break-inside: avoid;
    }
}
