.Scores {
    border-radius: 30px 30px 0 0;
    background-color: #fff;
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, .333333);
    min-height: 100vh;
    margin-top: 20px;
    padding-bottom: 40px;

    a {
        width: 90%;
        margin: 20px auto;
        color: #007bff;
        display: flex;
        align-items: center;
        cursor: pointer;
        text-decoration: none;

        i {
            margin-right: 3px;
        }
    }

    .Scores-title {
        height: 100%;
        display: flex;
        align-items: center;
        padding: 20px 30px;
        background-color: #ffca45;
        border-radius: 30px 30px 0 0;

        .green-title {
            color: #00A5A2;
            font-size: 1.8em;
            margin: 20px 20px;
        }

        .yellow-dot {
            color: #00A5A2;
            font-size: 3em;
            line-height: 0px;
        }
    }

    .trainee-scores {
        width: 90%;
        margin: 0 auto;

        .error {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 40px 0;

            p {
                margin-left: 6px;
                font-size: 1rem;
            }

            i {
                color: #C4233C;
            }
        }

        .tableBody {
            width: 100%;
            background-color: #ffffff;
            margin: 1.6rem auto;
            margin-top: 0.8rem;
            border-radius: 0.6rem;
            overflow: auto;

            .table {
                width: 100%;
                font-family: 'Quicksand', sans-serif;
                font-weight: 400;

                thead {

                    tr {
                        th {
                            position: sticky;
                            top: 0;
                            background-color: #fff;
                            padding: .8rem;
                            border-collapse: collapse;
                            text-align: left;
                            font-size: 13px;
                            border-bottom: 1px solid #e2e7eb;
                            color: #212153;
                        }
                    }
                }

                tbody {
                    tr {

                        td {
                            padding: .8rem;
                            border-collapse: collapse;
                            text-align: left;
                            font-size: 13px;
                            border-bottom: 1px solid #e2e7eb;
                        }
                    }
                }
            }

            .averageScore {
                margin-top: 20px;
                float: right;
                display: flex;
                align-items: center;
                justify-content: center;

                h4 {
                    margin-right: 10px;
                    font-size: 18px;
                }

                button {
                    font-family: "quicksand", sans-serif;
                    font-size: 1.15rem;
                    font-weight: 700;
                    border-radius: 4px;
                    border: none;
                    background-color: #ffca45;
                    padding: 8px 28px;
                    color: rgb(255, 255, 255);

                    span {
                        font-size: 1.15rem;
                        font-weight: 700;
                        color: #ffffff;
                    }
                }
            }
        }

    }
}