.div-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80vh;
}

.div-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 10vh;
}

.div-main-content-leftOrTop {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 0vw;
    height: 100%;
    transition: all 0.5s ease-in-out;
}

.div-main-content-leftOrTop-1, .div-main-content-leftOrTop-2, .div-main-content-rightOrBottom-1, .div-main-content-rightOrBottom-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.div-main-content-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 40vw;
    transition: all 0.5s ease-in-out;
}

.div-main-content-rightOrBottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 0vw;
    height: 100%;
    transition: all 0.5s ease-in-out;

    
}

.div-main-content-rightOrBottom-1 {
}

.div-main-content-rightOrBottom-2 {
}

.div-main-content-leftOrTop-1 {
}

.div-main-content-leftOrTop-2 {
}



.div-main-content-middle-score-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8vw 1.2vw;
    background-color: var(--brown);
    border-radius: 2vw;
    margin-bottom: 1vw;
    margin-top: -1vw;
    color: var(--white);
    font-size: 1.5vw;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}

.p-main-content-middle-score-circle-text {
    transition: all 0.5s ease-in-out;
    opacity: 0;
}

[data-section]:hover {
    transition: none;
    fill: var(--dartboardHighlight);
}


.single-group:hover [data-section] {
    transition: none;
    fill: var(--dartboardHighlight);
}

.outer-group:has(text:hover) [data-section="outer-ring"] {
    transition: none;
    fill: var(--dartboardHighlight);
}

.outer-group text {
    fill: var(--dartboardHighlight) !important;
}

.outer-group:has(text:hover) text {
    fill: var(--dartboardHighlightOpposite) !important;
}

.outer-group:has([data-section="outer-ring"]:hover) text {
    fill: var(--dartboardHighlightOpposite) !important;
}


.dartboardArea {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.dartboardArea svg {
    width: 60%;
    cursor: pointer;
    border-radius: 10000px;
}



.img-main-content-middle-return-button {
    width: 2.2vw;
    cursor: pointer;
    margin-top: 1vw;
    transition: all 0.2s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.img-main-content-middle-return-button:hover {
    transform: rotate(-10deg);
    opacity: 0.8;
}
