.reaction-test-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #f0f0f0;
}

.reaction-test-box {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    text-align: center;
    background-color: #dc3545; /* Sarkanā krāsa */
    color: white;
    font-size: 32px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
}

.reaction-test-text {
    margin: 0;
    line-height: 1.5;
}

.reaction-test-result {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-top: 20px;
}

.reaction-test-time {
    font-size: 32px;
    margin-bottom: 20px;
    color: black;
}

.reaction-test-try-again {
    padding: 10px 20px;
    font-size: 24px;
    background-color: #007bff; /* Zilā krāsa */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reaction-test-try-again:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .reaction-test-box {
        padding: 30px;
        font-size: 28px;
    }

    .reaction-test-time {
        font-size: 28px;
    }

    .reaction-test-try-again {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .reaction-test-box {
        padding: 20px;
        font-size: 24px;
    }

    .reaction-test-time {
        font-size: 24px;
    }

    .reaction-test-try-again {
        font-size: 18px;
    }
}
