body {
    margin: 0;
    overflow: hidden;
}
canvas {
    display: block;
}

/* ... 기존 라벨 스타일 ... */

#info-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    font-family: sans-serif;
    z-index: 100; /* 다른 요소들 위에 보이도록 설정 */
}

#info-box h2 {
    margin-top: 0;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

#info-box p {
    margin: 10px 0;
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
