/* --header-- */
.header {
    display: flex;
    justify-content: space-between;
    color: #757275;
}

/* --span-- */
.detected-num {
    font-weight: bold;
    color: #000000;
}

/* --drowpdown-- */
.dropdown {
    display: flex;
}

.more-results {
    color: #7BA000;
    text-decoration: underline;
}

#more-icon {
    display: none;
}

.dropdown-item:active {
    background-color: #C8E176;
    color: #000000;
}

#log-icon {
    font-size: 25px;
    margin-left: 20px;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 20
}

/* --cards-- */
.card {
    padding-right: none;
}

.card-title {
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

/* --Image-- */
.disease-img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
}

.card-text {
    font-size: 14px;
}

/* badges */
#bacterial {
    background-color: #FFCBCB;
    color: #8A0000;
}

#fungal {
    background-color: #F3FFCB;
    color: #6A8A00;
}

#viral {
    background-color: #FFCBF7;
    color: #8A006B;
}

#insect {
    background-color: #f1de9a;
    color: #8a5e00;
}

.instances {
    font-weight: bold !important;
}

.disease-type {
    color: #757275;
    margin-top: -15px;
    font-size: 12px;
}

/* --button-- */

.material-symbols-sharp {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
}

.highest {
    color: #000000;
    font-weight: bold;
}

.highest-percent {
    font-weight: bold;
    color: #6A8A00 !important;
}


/* --Mobile View-- */
@media (max-width: 600px) {

    .more-results {
        display: none;
    }

    #more-icon {
        display: block;
    }

}

.output-detection-cards:hover {
    cursor: pointer;
    /* box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); */
    /* transform: scale(1.02);
    transition: transform 0.1s ease-in-out; */
    background-color: #f6fede;
    border-color: #C8E176;
}