/* DPO Quiz - Data Protection Officer Assessment */

.dpo-quiz-form {
    max-width: 500px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.dpo-quiz-form h2 {
    margin-bottom: 20px;
}

.dpo_wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    direction: rtl;
    text-align: right;
    color: #333;
}

/* Start Card */
.dpo_start_card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
}

.dpo_start_icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.dpo_start_title {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.4;
}

.dpo_start_subtitle {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.dpo_start_features {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.dpo_start_button {
    padding: 15px 50px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dpo_start_button:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* Progress Bar */
.dpo_progress_container {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 8px;
}

.dpo_progress_track {
    flex: 1;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.dpo_progress_fill {
    height: 100%;
    width: 0%;
    background: #4285f4;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.dpo_progress_label {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
}

/* Question Area */
.dpo_question_area {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    animation: dpoFadeIn 0.3s ease-in;
}

@keyframes dpoFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dpo_question_text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.5;
}

.dpo_question_why {
    font-size: 14px;
    color: #777;
    margin: 0 0 20px;
    line-height: 1.6;
}

.dpo_options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dpo_option_btn {
    text-align: right;
    padding: 14px 18px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.dpo_option_btn:hover {
    border-color: #4285f4;
    background-color: #f0f4ff;
    transform: translateX(-2px);
}

.dpo_option_btn:active {
    background-color: #e3ecff;
}

/* Results */
.dpo_results_area {
    animation: dpoFadeIn 0.5s ease-in;
}

.dpo_result_card {
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 12px;
}

.dpo_result_card .dpo_card_label {
    font-size: 13px;
    margin: 0 0 4px;
    opacity: 0.85;
}

.dpo_result_card .dpo_card_title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
}

.dpo_result_card ul {
    margin: 0;
    padding-right: 18px;
    font-size: 14px;
    line-height: 1.8;
}

.dpo_result_card p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 8px;
}

/* Result card color themes */
.dpo_card_blue {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    color: #1565c0;
}

.dpo_card_teal {
    background: #e0f2f1;
    border: 1px solid #b2dfdb;
    color: #00695c;
}

.dpo_card_amber {
    background: #fff9ed;
    border: 1px solid #fce8c3;
    color: #7a5000;
}

.dpo_card_red {
    background: #f3e8ff;
    border: 1px solid #e2d1f0;
    color: #4a1d7a;
}

.dpo_card_purple {
    background: #f0f4ff;
    border: 1px solid #d6e0f5;
    color: #2c4a7c;
}

.dpo_card_pink {
    background: #f5f0ff;
    border: 1px solid #e0d6f5;
    color: #3d2c6b;
}

/* Disclaimer */
.dpo_disclaimer {
    font-size: 13px;
    color: #888;
    margin: 20px 10px 0;
    line-height: 1.5;
}

/* CTA Section */
.dpo_cta_section {
    text-align: center;
    margin-top: 24px;
}

.dpo_cta_link {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    background-color: #4285f4;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.dpo_cta_link:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* Restart button */
.dpo_restart_btn {
    margin-top: 16px;
    padding: 10px 24px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    color: #555;
    transition: all 0.2s ease;
}

.dpo_restart_btn:hover {
    background: #e8eaed;
}

/* Responsive */
@media (max-width: 768px) {
    .dpo_wrapper {
        padding: 10px;
    }

    .dpo_start_card {
        padding: 30px 20px;
    }

    .dpo_start_icon {
        font-size: 36px;
    }

    .dpo_start_title {
        font-size: 22px;
    }

    .dpo_start_subtitle {
        font-size: 16px;
    }

    .dpo_start_button {
        width: 100%;
        padding: 15px 30px;
    }

    .dpo_question_area {
        padding: 20px;
    }

    .dpo_question_text {
        font-size: 16px;
    }

    .dpo_option_btn {
        font-size: 14px;
        padding: 12px 14px;
    }

    .dpo_cta_link {
        display: block;
        width: 100%;
    }
}