/* Custom CSS for My Career Finder Plugin */
.my-career-finder-quiz {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
}

/* Progress Bar Customization */
.progress {
    background-color: #e9ecef;
    height: 12px !important;
}

/* Card Styling for Questions */
.mcf-card-question {
    border: none;
    transition: transform 0.3s ease;
}

.mcf-card-question .card-header {
    font-weight: 600;
    color: #6c757d;
    border-bottom: 1px solid #f8f9fa;
}

/* Option Button Styling (for Likert scale) */
.mcf-btn-option {
    min-width: 150px;
    font-size: 0.95rem;
    padding: 10px 15px;
    border-width: 2px;
    transition: all 0.2s ease;
}

.mcf-btn-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Email Capture and Start Screen */
.mcf-card-start, .mcf-card-capture {
    border: 1px solid #dee2e6;
    border-radius: 15px;
}

.mcf-loading-spinner {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Ensure the text is visible */
.mcf-loading-spinner .lead {
    color: #0d6efd; /* Use primary color for text */
    font-weight: 500;
}