.test-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.test-pagination a,
.test-pagination button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #ddd;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
}

.test-pagination a:hover,
.test-pagination button:hover {
    background-color: #e0e0e0;
}

#end-test-button {
    background-color: #d9534f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 10px;
}

#end-test-button:hover {
    background-color: #c9302c;
}

/* Center the Start Test Button */
/* Center Align the Button Wrapper */
.start-test-wrapper {
    text-align: center; /* Center-aligns the button */
    margin: 50px 0; /* Add some spacing above and below */
}

/* Jumbo Button Styling */
.jumbo-button {
    padding: 20px 50px; /* Increase button size */
    font-size: 24px; /* Large text */
    font-weight: bold;
    border-radius: 8px; /* Rounded corners */
    text-transform: uppercase; /* Make text uppercase */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Use WordPress Primary Colors on Hover */
.jumbo-button:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    text-decoration: none;
}

/* Optional: Active State */
.jumbo-button:active {
    transform: scale(0.98); /* Slight shrink on click */
}