/* 툴팁 스타일을 추가로 커스터마이즈 할 수 있습니다 */
.google-visualization-tooltip {
    background-color: #333 !important;
    color: #fff !important;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
    width: 195px !important;
    /* 가로 200px */
    height: 250px !important;
    /* 세로 300px */
    box-sizing: border-box;
    /* padding을 포함하여 크기 지정 */
    overflow: hidden;
    /* 내용이 넘칠 경우 숨김 */
    pointer-events: none !important;
    /* 툴팁이 마우스 이벤트에 영향을 주지 않도록 설정 */
    position: absolute !important;
    /* 툴팁을 절대 위치로 설정 */
    transform: translateY(10px);
    /* 마우스 커서 아래에 툴팁이 위치하도록 설정 */
    justify-content: space-between;
}

.tooltip-container {
    text-align: center;
    font-size: 14px;
    line-height: 1.4em;
}

.tooltip-date {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    padding-top: 5px;
    text-align: center;
    /* 날짜를 가운데 정렬 */
}

.tooltip-content {
    margin-bottom: 5px;
}

.tooltip-content div {
    display: flex;
    justify-content: space-between;
    /* 양쪽 정렬 */
    padding: 5px;
}

.tooltip-label {
    color: white;
    font-weight: bold;
}

.tooltip-value {
    font-weight: bold;
}

.tooltip-images {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.tooltip-image {
    width: 54px;
    height: 72px;
    margin-right: 0px;
}

.tooltip-image:last-child {
    margin-right: 0;
}

#data-table {
    width: 100%;
    max-width: 1920px;
    /* 캘린더와 동일한 크기로 설정, 필요시 조정 */
    border-collapse: collapse;
    text-align: center;
    margin: 0 auto;
}

#data-table th {
    font-size: 16px;
    border-bottom: 4px solid #333;
    /* 헤더의 아래 테두리를 두껍게 */
    border-top: none;
    /* 헤더의 상단 테두리 제거 */
    border-left: none;
    /* 헤더의 좌측 테두리 제거 */
    border-right: none;
    /* 헤더의 우측 테두리 제거 */
}

#data-table td {
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    /* 각 셀의 아래쪽 테두리만 표시 */
    border-top: none;
    /* 각 셀의 상단 테두리 제거 */
    border-left: none;
    /* 각 셀의 좌측 테두리 제거 */
    border-right: none;
    /* 각 셀의 우측 테두리 제거 */
}

.pagination {
    margin: 20px 0;
    text-align: center;
}

.pagination a {
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    background-color: #333;
    margin: 0 2px;
    border-radius: 4px;
}

.pagination a.active {
    background-color: #555;
    color: white;
}

.pagination a.disabled {
    pointer-events: none;
    background-color: #555;
    display: none;
}

.pagination a:hover:not(.active) {
    background-color: #444;
}

.game-image-container {
    position: relative;
    display: inline-block;    
}

.game-image-container img {
    width: 65px;
    height: 84px;
    padding: 0;
    margin: 0;
}

.game-tooltip {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    /* 이미지 위에 나타나도록 설정 */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.game-image-container:hover .game-tooltip {
    visibility: visible;
    opacity: 1;
}

h2 {
    font-size: 18px;
    color: #333;
    border-left: 4px solid #ff6699;
    padding-left: 10px;
    margin-bottom: 16px;
}

#calendar_chart {
    width: 1280px;
    height: 600px;
    margin: 0 auto;
}
