body {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #F5F5F5;
}

.dashboard-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
    width: 90%;
    flex-wrap: wrap;
    padding-top: 120px;
}

.dashboard-container-level {
    padding-top: 0px;
}

.dashboard-item {
    width: calc(33.333% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #B4B4B4;
    padding: 20px;
    border-radius: 20px;
    justify-content: center;
    min-height: 242px;
    margin: 20px;
    color: white;
}

.dashboard-item .img-container {
    display: flex;
    justify-content: center;
}

.dashboard-item img {
    width: 30%;
}

.dashboard-item h2 {
    padding-top: 20px;
}

.logout {
    font-size: 25px;
    position: absolute;
    right: 30px;
    color: #5196AC;
}

.back-arrow {
    font-size: 25px;
    position: absolute;
    left: 30px;
    color: #5196AC;
    z-index: 700;
}

/* User */

.users-dashboard,
.tests-dashboard {
    justify-content: center;
}

.tests-dashboard {
    font-size: 30px;
}

/* speakingTest */

.test-list .dashboard-container {
    padding-top: 40px;
}

.test-list .page-heading {
    padding-top: 90px;
    text-align: center;
    font-size: 40px;
    padding-bottom: 30px;
    font-weight: bold;
}

.test-list .page-heading p {
    font-weight: 600;
}

.disabled-input {
    pointer-events: none;
    opacity: 0.3;
    transition: 0.3s;
}


main{
    padding-top: 80px;
}


/* Success */

.success-uploaded-message {
    color: green;
    text-align: center;
    border: 0px;
}

.showcase-audio{
    margin-top: 20px;
}

.dashboard-container.user-registration{
    padding-top: 150px;
}

.dashboard-container.user-registration form{
    width: 90%;
    margin: 0 auto;
}


@media(max-width: 992px){
    .dashboard-container{
        flex-direction: column;
    }

    .dashboard-item{
        width: 90%;
        max-width: 400px;
    }
}