﻿
.year-selector {
    margin-bottom: 10px;
    text-align: left;
}

.year-selector select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 100px;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
    margin-bottom: 20px;
}

.chart-data-table {
    margin-top: 0;
    margin-bottom: 30px;
    width: 100%;
}

.chart-table-wrapper {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}
/* 차트 범례 스타일 */
.chart-legend {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.legend-color {
    width: 16px;
    height: 3px;
    margin-right: 8px;
}

.legend-color.target {
    background-color: #4e73df;
}

.legend-color.achievement {
    background-color: #f76026;
}

/* 표 스타일 */
.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th, .data-table td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    background: none;
}

.data-table th {
    border-top: 1px solid #aaa;
    background-color: #f9f9f9;
    font-weight: bold;
}

.data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.data-table td:first-child {
    font-weight: bold;
}

.academic-year-info {
    font-size: 13px;
    color: #666;
    text-align: right;
    margin-top: -5px;
    margin-bottom: 8px;
}


.year-legend-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
        
.chart-legend {
    display: flex;
    align-items: center;
}
        
.legend-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
        
.legend-color {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
        
.legend-color.target {
    background-color: #36a2eb;
}
        
.legend-color.achievement {
    background-color: #ff6384;
}
        
.year-selector select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}