/*
    REPORT CARDS CONTAINER
*/
#report-cards {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
}

#report-cards::-webkit-scrollbar {
    width: 8px;
}

#report-cards::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 12px;
}

#report-cards::-webkit-scrollbar-track {
    background: transparent;
}

/*
    ACCURACY PERCENTAGES
*/
#accuracies-title {
    background-color: var(--primary-color);
    border-radius: 10px;
    width: 90%;
    text-align: center;
    border: 2px solid var(--border-color);
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    position: relative;
}

.accuracyDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.accuracies {
    border: 2px solid #4caf50;
    border-radius: 10px;
    padding: 3px 5px 3px 5px;
    font-size: 20px;
}

#white-accuracy {
    background-color: rgb(255, 255, 255, 1);
    color: black;
}

#black-accuracy {
    background-color: rgb(0, 0, 0, 0.6);
    color: white;
}

/*
    CLASSIFICATION COUNT
*/
#classification-count-tooltip-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    color: #4caf50;
}

#classification-count-tooltip-message {
    font-size: 15px;
    font-style: italic;
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}

#classification-count-container {
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    background-color: var(--primary-color);
    width: 90%;
    color: white;
    flex-direction: column;
    font-size: 13px;
    gap: 2px;
}

.classification-count-row {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.classification-count-content {
    display: flex;
    gap: 6px;
    font-weight: bold;
    align-items: center;
}

.classification-count-content > img {
    height: 15px;
}

/*
    CLASSIFICATION MESSAGE
    e.g "Nd4 is a great move"
*/
#classification-message-container,
#top-alternative-message {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 14px !important;
    width: 90%;
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 5px;
    color: white;
    border: 2px solid var(--border-color);
}

#classification-message {
    font-size: 18px;
}

#top-alternative-message {
    color: #4caf50;
    text-align: center !important;
    margin-top: 5px !important;
}

/*
    ENGINE SUGGESTIONS
*/
#engine-suggestions {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    margin-top: 14px !important;
    border: 2px solid var(--border-color);

    width: 90%;

    background-color: var(--primary-color);
}

#engine-suggestions-title {
    margin-top: 5px;
}

.accuracyHolder {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.engine-suggestion {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 5px;
    font-size: 16px;
}

.engine-suggestion b {
    padding: 0 3px;
    text-align: center;
    border-radius: 5px;
    padding: 0px 4px 0px 4px;
    background-color: var(--secondary-color);
    border: 2px solid var(--border-color);
}

/*
    OPENING NAME
*/

#opening-name {
    width: 90%;
    border-radius: 10px;
    background-color: var(--primary-color);
    border: 2px solid var(--border-color);
    padding: 5px 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 10px;
}
/*
    EVALUATION GRAPH
*/
#evaluation-graph {
    border: 2px solid var(--border-color);
    border-radius: 5px;
      cursor: none;
}

/*
    REPORT CARD
*/

.report-card {
    gap: 5px;
    border: 2px solid var(--border-color);
    padding: 5px;
    color: white;  
    margin-top: 5px;
    width: 90%;
    background-color: var(--primary-color);
    border-radius: 10px;
}
.report-card:last-child {
    margin-bottom: 5px;
}


@media (max-width: 1026px) {
    #opening-name {
        font-size: 15px;
    }
}

@media (max-width: 999px) {
    #opening-name {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    #opening-name {
        font-size: 12px;
    }
}
