.olympic-tests-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.olympic-tests-wrapper-tests {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
    justify-content: center;
    align-items: center;
}

.olympic-tests-wrapper-tests-test {
    border: 1px solid #dddddd;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    cursor: pointer;
    width: 100%;
}

.olympic-tests-wrapper-tests-test:hover {
    background-color: #f9f9f8;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.new-olympic-test {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.olympic-tests-wrapper-tests-test-area-1 {
    width: 90%;
    display: flex;
    justify-content: center;
    flex-flow: column;
}

.olympic-tests-wrapper-tests-test-new {
    cursor: pointer;
}

.olympic-tests-wrapper-tests-test-title {
    width: 100%;
    font-weight: bold;
}

.olympic-tests-wrapper-tests-test-description {
    font-style: italic;
    line-height: 1;
    font-size: 14px;
}

.olympic-tests-wrapper-tests-test-controllers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    align-items: center;
    cursor: pointer;
}

.olympic-tests-wrapper-title {
    display: flex;
    align-items: center;
    width: 80%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    justify-content: start;
    padding: 40px 0 40px 0;
}

.btn-olympic-test-start {
    padding: 20px 15px !important;
    border-radius: 5px !important;
    justify-content: start !important;
    width: min-content !important;
    background: #1ca844 !important;
}

.btn-olympic-test-ranking {
    padding: 20px 15px !important;
    border-radius: 5px !important;
    justify-content: start !important;
    width: min-content !important;
}

.olympic-test-create-wrapper {
    padding: 20px;
}

@media (max-width: 767px) {
    .olympic-tests-wrapper-tests {
        width: 100%;
        gap: 0;
    }

    .olympic-tests-wrapper-title {
        border-bottom: 1px solid #ddd;
        background: #f1f1f1;
        padding: 10px;
        width: 100%;
        font-size: 15px;
    }

    .olympic-tests-wrapper-tests-test {
        border: none;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
        padding: 20px 10px;
    }
}