.element-label {
    font-size: 10px;
    color: inherit; /* 테두리 안에 있는 다른 텍스트와 같은 색상 사용 */
    position: absolute;
    top: 2px;
    left: 2px;
    padding: 1px 3px;
    border-radius: 2px;
    z-index: 10;
}

.cell-content-stem, .cell-content-branch {
    position: relative;
}

.sibsung-info {
    text-align: center !important;
}

.sibsung-name {
    display: block;
    width: 100%;
}

/* 툴팁 스타일 - 툴팁 제거 */
/* 툴팁 작동을 위한 CSS를 제거함 */
/*
.element-label[data-tooltip]:hover::after,
.hanja-info[data-tooltip]:hover::after,
.sibsung-name[data-tooltip]:hover::after,
.jijanghanja-info[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -100%);
    top: -10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: normal;
    z-index: 100;
    text-align: center;
    width: auto;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.jijanghanja-info[data-tooltip]:hover::after {
    top: auto;
    bottom: -10px;
    transform: translate(-50%, 100%);
}
*/