/* E-Learning Quiz System - Frontend Styles with WoodMart Integration */
/* This file inherits WoodMart theme settings dynamically */

/* === RESET & BASE === */
.elearning-quiz-container *,
.elearning-lesson-container * {
    box-sizing: border-box;
}

/* === QUIZ CONTAINER === */
.elearning-quiz-container {
    max-width: var(--wd-container-width, 1200px);
    margin: 0 auto;
    padding: var(--wd-gap, 20px);
    font-family: var(--wd-text-font);
    font-size: var(--wd-text-font-size, 16px);
    line-height: var(--wd-text-line-height, 1.6);
    color: var(--wd-text-color, #777);
}

/* === QUIZ PASSED STATE === */
.elearning-quiz-passed {
    text-align: center;
    padding: 40px 20px;
    background: var(--wd-light-bgcolor, #f9f9f9);
    border-radius: var(--wd-brd-radius, 12px);
    border: 2px solid var(--wd-success-color, #22c55e);
    margin-bottom: 30px;
}

.quiz-success-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    color: var(--wd-success-color, #22c55e);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.elearning-quiz-passed h3 {
    color: var(--wd-success-color, #059669);
    margin: 0 0 20px 0;
    font-size: var(--wd-title-font-size, 24px);
    font-family: var(--wd-title-font);
    font-weight: var(--wd-title-font-weight, 600);
}

/* === BUTTONS - Using WoodMart Button System === */
.start-quiz-btn,
.quiz-nav-btn,
.quiz-submit-btn,
.mark-complete-btn,
.retake-quiz-btn,
.retry-btn {
    /* Inherit WoodMart button styles */
    font-family: var(--wd-text-font);
    font-weight: var(--wd-btns-font-weight, 600);
    font-size: var(--wd-btns-font-size, 14px);
    line-height: var(--wd-btns-line-height, 18px);
    padding: var(--wd-btns-padding-v, 12px) var(--wd-btns-padding-h, 25px);
    border-radius: var(--wd-btns-brd-radius, 0);
    text-transform: var(--wd-btns-transform, uppercase);
    transition: all .25s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* Primary buttons */
.start-quiz-btn,
.next-btn,
.mark-complete-btn,
.quiz-button {
    background-color: var(--wd-primary-color, #83b735);
    color: #fff;
}

.start-quiz-btn:hover,
.next-btn:hover,
.mark-complete-btn:hover,
.quiz-button:hover {
    background-color: var(--wd-primary-color-hover, #6e9a2c);
    box-shadow: 0 0 10px rgba(var(--wd-primary-color-rgb, 131,183,53), .35);
}

/* Secondary buttons */
.prev-btn,
.retake-quiz-btn,
.retry-btn {
    background-color: var(--wd-gray-300, #f3f3f3);
    color: var(--wd-text-color, #333);
}

.prev-btn:hover:not(:disabled),
.retake-quiz-btn:hover,
.retry-btn:hover {
    background-color: var(--wd-gray-400, #e5e5e5);
}

/* Danger buttons */
.quiz-submit-btn {
    background-color: var(--wd-notice-error, #e24b4b);
    color: #fff;
}

.quiz-submit-btn:hover {
    background-color: var(--wd-notice-error-hover, #c93a3a);
    box-shadow: 0 0 10px rgba(226,75,75,.35);
}

/* === QUIZ INTRO === */
.elearning-quiz-intro {
    background: var(--wd-light-bgcolor, #f8fafc);
    padding: 30px;
    border-radius: var(--wd-brd-radius, 12px);
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid var(--wd-border-color, #e2e8f0);
}

/* === QUIZ PROGRESS === */
.quiz-progress {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--wd-main-bgcolor, #fff);
    border-radius: var(--wd-brd-radius, 8px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--wd-gray-200, #e2e8f0);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--wd-primary-color, #059669);
    transition: width 0.5s ease;
    border-radius: 4px;
}

/* === QUESTIONS === */
.quiz-question {
    display: none;
    background: var(--wd-main-bgcolor, #fff);
    border-radius: var(--wd-brd-radius, 12px);
    padding: 30px;
    box-shadow: 0 0 4px rgba(0,0,0,.08);
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.quiz-question.active {
    display: block;
    border-color: var(--wd-primary-color, #3b82f6);
}

.quiz-question:hover {
    box-shadow: 0 0 15px rgba(0,0,0,.12);
}

.question-title {
    color: var(--wd-title-color, #2d2a2a);
    margin: 0;
    font-size: var(--wd-title-font-size, 20px);
    font-family: var(--wd-title-font);
    font-weight: var(--wd-title-font-weight, 600);
}

.question-text {
    font-size: var(--wd-text-font-size, 18px);
    line-height: var(--wd-text-line-height, 1.7);
    color: var(--wd-text-color, #777);
    margin-bottom: 25px;
    padding: 20px;
    background: var(--wd-light-bgcolor, #f8fafc);
    border-radius: var(--wd-brd-radius, 8px);
    border-left: 4px solid var(--wd-primary-color, #3b82f6);
}

/* === FORM ELEMENTS - Match WoodMart === */
.elearning-quiz-container input[type="radio"],
.elearning-quiz-container input[type="checkbox"] {
    appearance: none !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid var(--wd-form-brd-color, #d1d5db) !important;
    margin-right: 15px !important;
    cursor: pointer !important;
    background: var(--wd-form-bg, #fff) !important;
    position: relative !important;
    flex-shrink: 0 !important;
    transition: all .25s ease;
}

.elearning-quiz-container input[type="radio"] {
    border-radius: 50% !important;
}

.elearning-quiz-container input[type="checkbox"] {
    border-radius: var(--wd-form-brd-radius, 4px) !important;
}

.elearning-quiz-container input[type="radio"]:hover,
.elearning-quiz-container input[type="checkbox"]:hover {
    border-color: var(--wd-primary-color, #9ca3af) !important;
}

.elearning-quiz-container input[type="radio"]:checked,
.elearning-quiz-container input[type="checkbox"]:checked {
    border-color: var(--wd-primary-color, #6b7280) !important;
    background: var(--wd-primary-color, #6b7280) !important;
}

/* === OPTION LABELS === */
.option-label {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--wd-light-bgcolor, #f8fafc);
    border: 2px solid var(--wd-border-color, #e2e8f0);
    border-radius: var(--wd-brd-radius, 8px);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    margin-bottom: 12px;
}

.option-label:hover {
    background: var(--wd-light-bgcolor-hover, #f1f5f9);
    border-color: var(--wd-primary-color, #cbd5e1);
    transform: translateX(4px);
}

.option-label:has(input:checked) {
    background: var(--wd-primary-color-light, #dbeafe);
    border-color: var(--wd-primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(var(--wd-primary-color-rgb, 59,130,246), 0.1);
}

.option-text {
    flex: 1;
    font-size: var(--wd-text-font-size, 16px);
    line-height: 1.5;
    color: var(--wd-text-color, #777);
}

/* === WORD BANK ITEMS === */
.word-item {
    background: var(--wd-primary-color, #3b82f6);
    color: white;
    padding: 10px 20px;
    border-radius: 25px; /* Pill shape */
    cursor: grab;
    user-select: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border: 2px solid transparent;
    font-size: 16px;
    margin: 5px;
}

.word-item:hover {
    background: var(--wd-primary-color-hover, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--wd-primary-color-rgb, 59,130,246), 0.3);
    border-color: var(--wd-primary-color-hover, #2563eb);
}

.word-item:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.word-item.used {
    background: var(--wd-gray-400, #94a3b8);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Mobile tap interface styles */
.mobile-interface .word-item.selected {
    background: var(--wd-secondary-color, #fbbc34);
    border-color: var(--wd-secondary-color, #fbbc34);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(var(--wd-secondary-color-rgb, 251,188,52), 0.4);
}

.mobile-interface .blank-space.awaiting-selection {
    animation: pulse 1.5s ease-in-out infinite;
    border-color: var(--wd-secondary-color, #fbbc34);
    background: rgba(var(--wd-secondary-color-rgb, 251,188,52), 0.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--wd-secondary-color-rgb, 251,188,52), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--wd-secondary-color-rgb, 251,188,52), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--wd-secondary-color-rgb, 251,188,52), 0);
    }
}

/* === MATCHING COLUMNS === */
.left-column,
.right-column {
    background: var(--wd-main-bgcolor, #fff);
    padding: 20px;
    border-radius: var(--wd-brd-radius, 8px);
    border: 2px solid var(--wd-border-color, #e2e8f0);
}

.drop-zone {
    min-height: 50px;
    border: 2px dashed var(--wd-border-color, #cbd5e1);
    border-radius: var(--wd-brd-radius, 6px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wd-light-bgcolor, #f9fafb);
    transition: all 0.3s ease;
    position: relative;
}

.drop-zone:hover {
    border-color: var(--wd-primary-color, #94a3b8);
    background: var(--wd-light-bgcolor-hover, #f1f5f9);
}

.drop-zone.drag-over {
    border-color: var(--wd-primary-color, #3b82f6);
    background: var(--wd-primary-color-light, #dbeafe);
    border-style: solid;
    transform: scale(1.02);
}

/* Mobile tap interface for drop zones */
.mobile-interface .drop-zone.awaiting-selection {
    animation: pulse 1.5s ease-in-out infinite;
    border-color: var(--wd-secondary-color, #fbbc34);
    background: rgba(var(--wd-secondary-color-rgb, 251,188,52), 0.1);
}

/* === QUIZ RESULTS === */
.quiz-results {
    background: var(--wd-main-bgcolor, #fff);
    border-radius: var(--wd-brd-radius, 12px);
    padding: 30px;
    box-shadow: 0 0 4px rgba(0,0,0,.08);
    text-align: center;
}

.quiz-results.passed {
    border: 2px solid var(--wd-success-color, #22c55e);
    background: var(--wd-success-bg, #ecfdf5);
}

.quiz-results.failed {
    border: 2px solid var(--wd-notice-error, #ef4444);
    background: var(--wd-error-bg, #fef2f2);
}

/* === TIMER === */
.quiz-timer {
    background: var(--wd-info-bg, #f0f9ff);
    border: 2px solid var(--wd-primary-color, #3b82f6);
    border-radius: var(--wd-brd-radius, 8px);
    padding: 12px 20px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--wd-primary-color, #1e40af);
    transition: all 0.3s ease;
}

.quiz-timer.warning {
    background: var(--wd-warning-bg, #fef3c7);
    border-color: var(--wd-warning-color, #f59e0b);
    color: var(--wd-warning-color, #d97706);
    animation: pulse 1s ease-in-out infinite;
}

/* === LESSON SECTIONS === */
.lesson-section {
    background: var(--wd-main-bgcolor, #fff);
    border-radius: var(--wd-brd-radius, 12px);
    box-shadow: 0 0 4px rgba(0,0,0,.08);
    transition: box-shadow .3s ease;
    margin-bottom: 20px;
    padding: 25px;
}

.lesson-section:hover {
    box-shadow: 0 0 15px rgba(0,0,0,.12);
}

.lesson-section.completed {
    border-left: 4px solid var(--wd-success-color, #22c55e);
}

.lesson-section.locked {
    opacity: 0.7;
    background: var(--wd-gray-100, #f9f9f9);
}

.section-title {
    font-family: var(--wd-title-font);
    font-weight: var(--wd-title-font-weight, 600);
    color: var(--wd-title-color, #2d2a2a);
    margin-bottom: 15px;
}

.section-content {
    font-family: var(--wd-text-font);
    font-size: var(--wd-text-font-size, 16px);
    line-height: var(--wd-text-line-height, 1.6);
    color: var(--wd-text-color, #777);
}

.section-actions {
    margin-top: var(--wd-gap, 30px);
}

/* === RESPONSIVE - Using WoodMart Breakpoints === */
@media (max-width: 1024px) {
    .elearning-quiz-container,
    .elearning-lesson-container {
        padding: var(--wd-gap-sm, 15px);
    }
}

@media (max-width: 768px) {
    .quiz-question,
    .lesson-section {
        padding: 20px 15px;
    }
    
    .true-false-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .matching-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* === DARK MODE SUPPORT === */
body.wd-dark .elearning-quiz-container,
body.wd-dark .elearning-lesson-container {
    color: var(--wd-dark-text-color, #ccc);
}

body.wd-dark .quiz-question,
body.wd-dark .lesson-section {
    background: var(--wd-dark-main-bgcolor, #1e1e1e);
}

body.wd-dark .question-text,
body.wd-dark .section-content {
    color: var(--wd-dark-text-color, #ccc);
    background: var(--wd-dark-light-bgcolor, #2a2a2a);
}

body.wd-dark .option-label {
    background: var(--wd-dark-light-bgcolor, #2a2a2a);
    border-color: var(--wd-dark-border-color, #3a3a3a);
    color: var(--wd-dark-text-color, #ccc);
}

body.wd-dark .option-label:hover {
    background: var(--wd-dark-light-bgcolor-hover, #353535);
}

body.wd-dark .option-label:has(input:checked) {
    background: var(--wd-dark-primary-light, #1e3a8a);
    border-color: var(--wd-primary-color, #3b82f6);
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === MATCHING QUIZ TYPE - Style Available Options as Pills === */
.matching-container .right-column {
    background: var(--wd-light-bgcolor, #e0e7ff);
    border-color: var(--wd-primary-color, #c7d2fe);
}

/* Style draggable items as pills */
.draggable-item {
    background: var(--wd-primary-color, #3b82f6);
    color: white;
    padding: 12px 20px;
    border-radius: 25px; /* Pill shape */
    cursor: grab;
    user-select: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 5px;
    border: 2px solid transparent;
}

.draggable-item:hover {
    background: var(--wd-primary-color-hover, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--wd-primary-color-rgb, 59,130,246), 0.3);
    border-color: var(--wd-primary-color-hover, #2563eb);
}

.draggable-item:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.draggable-item.dragging {
    opacity: 0.7;
    transform: rotate(5deg);
}

.draggable-item.used {
    background: var(--wd-gray-400, #94a3b8);
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

/* Mobile tap interface for draggable items */
.mobile-interface .draggable-item.selected {
    background: var(--wd-secondary-color, #fbbc34);
    border-color: var(--wd-secondary-color, #fbbc34);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(var(--wd-secondary-color-rgb, 251,188,52), 0.4);
}

/* Make Available Options more prominent */
.matching-container .right-column h4 {
    margin: 0 0 20px 0;
    color: var(--wd-title-color, #374151);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* Grid layout for draggable items */
.draggable-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 10px;
}

/* === FILL IN THE BLANKS - Improve Word Bank Visibility === */
.fill-blanks-container {
    margin-bottom: 20px;
}

/* Style the Word Bank container */
.word-bank {
    background: var(--wd-light-bgcolor, #f0f4f8);
    padding: 25px;
    border-radius: var(--wd-brd-radius, 12px);
    border: 2px solid var(--wd-primary-color, #3b82f6);
    margin-top: 30px;
}

/* Make Word Bank heading more prominent */
.word-bank h4 {
    margin: 0 0 20px 0;
    color: var(--wd-title-color, #1f2937);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Style word items as pills */
.word-bank-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Make the text with blanks more readable */
.text-with-blanks {
    font-size: var(--wd-text-font-size-lg, 18px);
    line-height: 2.2;
    padding: 25px;
    background: var(--wd-main-bgcolor, #ffffff);
    border-radius: var(--wd-brd-radius, 8px);
    margin-bottom: 0; /* Remove bottom margin since word bank has top margin */
    border: 1px solid var(--wd-border-color, #e5e7eb);
}

/* Style the blank spaces to be more visible */
.blank-space {
    display: inline-block;
    min-width: 120px;
    height: 40px;
    background: var(--wd-light-bgcolor, #f8f9fa);
    border: 2px dashed var(--wd-primary-color, #94a3b8);
    border-radius: 6px;
    margin: 0 8px;
    vertical-align: middle;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 36px;
    font-weight: 600;
}

.blank-space:hover {
    background: var(--wd-light-bgcolor-hover, #e9ecef);
    border-color: var(--wd-primary-color-hover, #6c757d);
}

.blank-space.filled {
    background: var(--wd-primary-color-light, #dbeafe);
    border-color: var(--wd-primary-color, #3b82f6);
    border-style: solid;
    color: var(--wd-primary-color, #1e40af);
}

.blank-space.drop-target {
    background: var(--wd-warning-bg, #fef3c7);
    border-color: var(--wd-warning-color, #f59e0b);
    transform: scale(1.05);
}

/* Add visual separator between text and word bank */
.word-bank::before {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    background: var(--wd-primary-color, #3b82f6);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .word-bank-items,
    .draggable-items {
        gap: 8px;
    }
    
    .word-item,
    .draggable-item {
        padding: 8px 16px;
        font-size: 14px;
        min-height: 40px;
    }
    
    .blank-space {
        min-width: 100px;
        height: 36px;
        line-height: 32px;
        margin: 0 5px;
    }
    
    /* Mobile tap interface adjustments */
    .mobile-interface .word-item,
    .mobile-interface .draggable-item {
        cursor: pointer;
    }
    
    .mobile-interface .blank-space,
    .mobile-interface .drop-zone {
        cursor: pointer;
    }
}

/* === MOBILE-SPECIFIC STYLES === */
.mobile-interface .word-item:not(.used):not(.selected) {
    border: 2px solid transparent;
}

.mobile-interface .word-item:not(.used):not(.selected):hover {
    border-color: var(--wd-primary-color, #3b82f6);
}

.mobile-interface .draggable-item:not(.used):not(.selected) {
    border: 2px solid transparent;
}

.mobile-interface .draggable-item:not(.used):not(.selected):hover {
    border-color: var(--wd-primary-color, #3b82f6);
}

/* Visual feedback for mobile tap interface */
.mobile-interface .blank-space.awaiting-selection:before,
.mobile-interface .drop-zone.awaiting-selection:before {
    content: "👆";
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    animation: bounce 1s infinite;
}

/* Remove button styles for mobile */
.mobile-interface .remove-match {
    background: var(--wd-error-color, #dc2626);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    min-width: 30px;
    min-height: 30px;
}

.mobile-interface .remove-match:hover {
    background: var(--wd-error-color-hover, #b91c1c);
}

/* === QUIZ MODALS === */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: var(--wd-main-bgcolor, white);
    padding: 40px;
    border-radius: var(--wd-brd-radius, 12px);
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--wd-gray-200, #e2e8f0);
    border-top: 4px solid var(--wd-primary-color, #3b82f6);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === TRUE/FALSE OPTIONS - FIXED NEUTRAL STYLING === */
.true-false-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

@media (max-width: 640px) {
    .true-false-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* CRITICAL: Completely neutral styling for ALL True/False options */
.elearning-quiz-container .true-false-options .option-label {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 16px 20px !important;
    background: var(--wd-light-bgcolor, #f8fafc) !important;
    border: 2px solid var(--wd-border-color, #e2e8f0) !important;
    border-radius: var(--wd-brd-radius, 8px) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-height: 48px !important;
    color: var(--wd-text-color, #374151) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-align: left !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Option text styling for True/False - IDENTICAL */
.elearning-quiz-container .true-false-options .option-text {
    flex: 1 !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: var(--wd-text-color, #374151) !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* === Section after lesson first section === */
.lesson-section.completed,
.section-actions {
  margin: 25px 0;
}
.button.quiz-button {
  background-color: var(--wd-primary-color, green);
  color: white;
  padding: 15px 25px;
  border-radius: var(--wd-brd-radius, 8px);
  border: none !important;
}

.mark-complete-btn {
  background-color: var(--wd-primary-color, green);
  color: white;
  padding: 15px 25px;
  border-radius: var(--wd-brd-radius, 8px);
  border: none !important;
}