.grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.chartSection {
    width: 75%;
}

.occlusionContainer {
    position: relative;
    width: 100%;
}

.overlay {
    width: 100%;
    display: block;
    user-select: none;
    opacity: 0.5;

}

.svgOclusao {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 2;
}

.toothHitbox {
    fill: transparent;
    stroke-width: 6;
    stroke: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: .15s;
}

.toothHitbox:hover {
    stroke: #0d6efd;
    stroke-width: 6;
}

.toothSelected {
    stroke: #ffc107 !important;
    stroke-width: 8 !important;
}

.contactLine {
    stroke-width: 12;
    stroke-linecap: round;
    cursor: pointer;
}

.contactLine:hover {
    stroke-width: 10;
}

#contacts {
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 15px;
}

.contactItem {
    padding: 6px;
    margin-bottom: 5px;
    border-left: 10px solid;
}

#tooltip {
    position: absolute;
    display: none;

    background: #222;
    color: #fff;

    padding: 5px 10px;
    border-radius: 4px;

    font-size: 12px;

    pointer-events: none;

    z-index: 9999;
}