#app {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-box {
    width: 50%;
}

.user-card {
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 5px 20px;
    border-radius: 999px;
    background-color: #dddddd;
    font-size: 21px;
}

.user-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
}

.point {
    background-color: #cccccc;
    border-radius: 999px;
    position: relative;
    padding: 4px 10px;
}

@media (max-width: 600px) {
    .progress-box {
        width: 100%;
    }
}

.result-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.result-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    margin: 20px;
    border-radius: 30px;
    width: 100%;
    font-weight: 500;
    color: white;
}

.green {
    background-color: rgb(48, 212, 33);
    
}

.red {
    background-color: rgb(255, 0, 0);
}

.yellow {
    background-color: rgb(255, 140, 0);
}

.blue {
    background-color: rgb(0, 102, 255);
}

.result-number {
    font-weight: 500;
    color: white;
}
/*
.green .result-number {
    color: rgb(39, 69, 36);
}

.red .result-number {
    color: rgb(69, 26, 26);
}

.yellow .result-number {
    color: rgb(60, 57, 14);
}

.blue .result-number {
    color: rgb(12, 30, 58);
}
*/
.green .result-icon {
    background-color: rgb(13, 154, 0);
}

.red .result-icon {
    background-color: rgb(150, 0, 0);
}

.yellow .result-icon {
    background-color: rgb(154, 85, 0);
}

.blue .result-icon {
    background-color: rgb(0, 69, 171);
}

.result-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 10px;
}

.estimated-box {
    background-color: #dddddd;
    border-radius: 30px;
    margin: 20px;
    padding: 20px;
}

.estimated-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #cccccc;
}

.estimated-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.estimated-point {
    color: red;
    font-size: 30px;
}