/*  제목 스타일 */
h1 {
    text-align: center;
    font-size: 32px;
}
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
}

/*  Date Picker + Filter 버튼 (비율 75% / 25%) */
.date-filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    max-width: 500px;
    margin: auto;
}

.date-filter-container input {
    flex: 3; /* 75% */
}

.date-filter-container button {
    flex: 1; /* 25% */
    white-space: nowrap;
}

/*  Predefined 버튼 한 줄 정렬 */
.button-container {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: nowrap;
    margin-bottom: 10px;

}

/*  버튼 크기 최소화 */
button {
    padding: 6px 12px;
    font-size: 14px;
    white-space: nowrap;
}

/*  차트 스타일 */
.chart-container {
    position: relative;
    height: 600px;
    width: 100%;
}

/*  데이터 없음 메시지 스타일 */
#noDataMessage {
    text-align: center;
    color: red;
    font-size: 18px;
    display: none;
}

/*  반응형 조정 (작은 화면에서는 세로 배치) */
@media (max-width: 500px) {
    .date-filter-container {
        flex-direction: column;
        gap: 5px;
    }
    .date-filter-container input,
    .date-filter-container button {
        width: 100%;
    }
}
