/* Progress Icon Styling */
.progress-icon {
    display: inline-block;
    position: relative;
    z-index: 2;
    margin: 0 8px;
}

.progress-icon img {
    width: 20px;
    height: 20px;
}

/* Progress Bar Container */
.progress-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 5px;
}

/* Points Box Styling */
#pointsBox {
    background-color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    font-size: 14px;
}

/* Button Sizes */
#real img, #fake img, .col-auto img {
    width: 90px; 
    height: auto;
}

@media (max-width: 768px) {
    #real img, #fake img, .col-auto img {
        width: 80px;
    }
}