/* 스타일 추가 */
.stream-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    max-width: 1200px;
}

.stream-summary div {
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: 23%;
}

.chart-container {
    margin-bottom: 20px;
}

.stream-detail {
    margin-bottom: 20px;
}

.stream-games {
    margin: 20px 0;
    max-width: 1200px;
}

.game-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    table-layout: fixed;
    /* 모든 열의 크기를 동일하게 함 */
    max-width: 1200px;
}

.game-table td {
    border: 1px solid #ddd;
    padding: 8px;
    vertical-align: top;
    text-align: right;
    font-size: 14px;
}

.game-image {
    width: 100%;
    height: auto;
}

.game-table td[colspan='3'] {
    text-align: left;
    font-weight: bold;
}

/* 차트 크기를 지정하는 스타일 */
.chart-container {
    max-width: 1200px;
    height: 450px;
}

.back-button-container {
    text-align: right;
    margin-bottom: 10px;
    max-width: 1200px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    font-size: 12px;
}

.back-button:hover {
    background-color: #555;
}

.back-icon {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.back-arrow {
    display: inline-block;
    margin-right: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 5px;
    transform: rotate(135deg);
}