#nma_quiz_audio_video_post {
  display: flex;
  align-items: center;
}

.nma_update_button_wrap {
margin-right: 10px;
}

/* Pagination container */
#pagination {
    margin-top: 20px;
    text-align: center;
}

/* Pagination links */
.pagination-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pagination-links li {
    display: inline-block;
    margin-right: 5px;
}

.pagination-links li a {
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.pagination-links li a:hover {
    background-color: #e0e0e0;
}

.pagination-links .active a {
    background-color: #0073aa;
    color: #fff;
}

/* Previous and Next links */
.pagination-links .prev-page,
.pagination-links .next-page {
    padding: 5px 10px;
    text-decoration: none;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.pagination-links .prev-page:hover,
.pagination-links .next-page:hover {
    background-color: #e0e0e0;
}

.pagination-links .prev-page {
    margin-right: 10px;
}

.pagination-links .next-page {
    margin-left: 10px;
}

.pagination-links  .active {
 background: bottom;
}

.nma_recorder_container {
 display: none;
}


/* Spinner CSS */
.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1); /* Increase border thickness */
    width: 80px;  /* Increase size of the spinner */
    height: 80px; /* Increase size of the spinner */
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s linear infinite;
    position: fixed; /* Fixed position */
    top: 50%;        /* Center vertically */
    left: 50%;       /* Center horizontally */
    transform: translate(-50%, -50%); /* Center the spinner */
    z-index: 9999;   /* Ensure it appears above other content */
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
    /* Hazy effect CSS */
.hazy {
    position: relative;
}

.hazy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
    z-index: 9998;  /* Ensure it is behind the spinner */
}

  
  /* Apply styles to input[name="next"] in the last .wpProQuiz_listItem */
.wpProQuiz_list .wpProQuiz_listItem:last-child input[name="next"] {
      pointer-events: none;
    opacity: 0.5; 
    cursor: not-allowed;
}

.wpProQuiz_list .wpProQuiz_listItem input[name="next"].enabled {
    pointer-events: auto !important;
    opacity: 1 !important;
    cursor: pointer !important;
}