/* PDF Report Styles - Applied to #ifc-print-report */
#ifc-print-report {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Microsoft YaHei", "WenQuanYi Micro Hei", "Hiragino Sans GB", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", "Malgun Gothic";
    color: #333;
    line-height: 1.4;
}

/* Report Header */
#ifc-print-report .ifc-report-header {
    text-align: center;
    border-bottom: 2px solid #6750a4;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

#ifc-print-report .ifc-report-logo {
    max-height: 50px;
    width: auto;
    margin: 0 auto 0.5rem auto;
    display: block;
}

#ifc-print-report .ifc-report-header h1 {
    margin: 0;
    font-size: 1.75rem;
    color: #6750a4;
    line-height: 1.3;
    letter-spacing: 0.5px;
    word-spacing: 2px;
}

#ifc-print-report .ifc-report-header p {
    margin: 0.25rem 0 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

#ifc-print-report .ifc-report-date {
    font-weight: bold;
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

/* Sections */
#ifc-print-report .ifc-report-section {
    margin-bottom: 1.25rem;
}

#ifc-print-report .ifc-report-section h2 {
    font-size: 1.15rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.35rem;
    margin-bottom: 0.65rem;
    color: #444;
    line-height: 1.3;
}

#ifc-print-report .ifc-report-section p {
    line-height: 1.4;
    margin: 0.5rem 0;
}

/* Grid Layouts */
#ifc-print-report .ifc-report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.85rem;
}

#ifc-print-report .ifc-report-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.15rem;
}

#ifc-print-report .ifc-report-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Highlight Section */
#ifc-print-report .ifc-highlight-section {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #eee;
}

#ifc-print-report .ifc-report-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 0.85rem;
}

#ifc-print-report .ifc-stat-box {
    text-align: center;
}

#ifc-print-report .ifc-stat-box .label {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

#ifc-print-report .ifc-stat-box .value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #6750a4;
    line-height: 1.1;
}

/* Charts */
#ifc-print-report .ifc-report-charts {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
}

#ifc-print-report .ifc-report-chart {
    flex: 1;
    text-align: center;
}

#ifc-print-report .ifc-report-chart h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #555;
}

#ifc-print-report .ifc-report-chart img {
    max-width: 100%;
    height: auto;
    max-height: 140px;
}

/* Schedule */
#ifc-print-report .ifc-report-schedule {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}

#ifc-print-report .schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem;
    border-bottom: 1px solid #eee;
}

#ifc-print-report .schedule-row:last-child {
    border-bottom: none;
}

#ifc-print-report .schedule-row .time-label {
    font-weight: 600;
    font-size: 0.9rem;
}

#ifc-print-report .schedule-row .time-value {
    font-size: 0.9rem;
}

/* Footer */
#ifc-print-report .ifc-report-footer {
    text-align: center;
    font-size: 0.7rem;
    color: #999;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 0.65rem;
}