.statistics_area {
  width: 100%;
  margin: auto;
  display: block;
  height: auto;
}

.main-frame {
    margin: 20px auto;
    display: flex;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.column {
    box-sizing: border-box;
}

.left-column {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.left-column > .status-section > .row {
    margin-left: 20px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 200px;
}

.left-column > .status-section > .row:first-child {
    /*margin-left: 20px;*/
    border-bottom: 1px solid #7f8c8d;
}

.left-column > .today-status-section {
    border-top: 1px solid #7f8c8d;
    margin-left: 20px;
    padding: 20px;
    padding-top: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.today-status-section > p > .status-category {
  color: var(--color-point);
  margin-right: 10px;
}

.today-status-section > p > .status-view {
  color: var(--color-point);
  margin-left: 10px;
}

.right-column {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.graph-section, .comment-section {
    padding: 30px;
    box-sizing: border-box;
    overflow: hidden;
}

.graph-section {
    height: 200px; /* 고정된 높이 설정 */
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.comment-section {
    display: flex;
    flex: 1;
    overflow-y: auto; /* 스크롤이 생기도록 설정 */
}

.title {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

.content {
    font-size: 2em;
}

.bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.bar {
    width: 14%;
    background-color: #3498db;
    text-align: center;
    color: var(--color-primary);
    border-radius: 3px 3px 0 0;
    position: relative;
}

.bar-data {
    position: relative;
    bottom: +25px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
}

.bar-date {
    position: absolute;
    bottom: -25px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
}

.bar-short_date {
    display: none;
    position: absolute;
    bottom: -25px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
}

.content-left-column {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.content-right-column {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.comment {
    margin-right: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #7f8c8d;
}

.comment:last-child {
    border-bottom: none;
}

.comment-category {
  color: var(--color-point);
  margin-right: 20px;
}