/* Car Selection Quiz - Simple Clean Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Container */
.car-selection-quiz-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
}

.csq-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 0;
    padding: 40px;
    box-shadow: none;
    border-left: none;
    max-width: 100%;
    margin: 0;
    width: 100%;
}

/* Question Text */
.csq-question {
    font-size: 26px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 35px;
    line-height: 1.4;
    text-align: center;
}

/* Form Styling */
.csq-form {
    display: flex;
    flex-direction: column;
}

/* Options Container */
.csq-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

/* Single Option */
.csq-option {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.csq-option:hover {
    background: #f9fafb;
    border-color: #1e73be;
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.15);
}

.csq-option input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border: 2.5px solid #1e73be;
    border-radius: 50%;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 14px;
}

.csq-option input[type="radio"]:hover {
    box-shadow: 0 0 10px rgba(30, 115, 190, 0.4);
}

.csq-option input[type="radio"]:checked {
    background: #1e73be;
    box-shadow: inset 0 0 0 3px white, 0 0 10px rgba(30, 115, 190, 0.6);
}

.csq-option input[type="radio"]:focus {
    outline: none;
}

/* Option Text */
.csq-option-text {
    font-size: 15px;
    color: #222222;
    font-weight: 500;
    line-height: 1.4;
    flex-grow: 1;
}

.csq-option input[type="radio"]:checked ~ .csq-option-text {
    color: #1e73be;
    font-weight: 600;
}

/* Button Group */
.csq-button-group {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Submit Button */
.csq-submit-btn {
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #03fce3 0%, #00d4aa 100%);
    color: #222222;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(3, 252, 227, 0.35);
}

.csq-submit-btn:hover {
    background: linear-gradient(135deg, #016ABC 0%, #0056a3 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 107, 188, 0.4);
}

.csq-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(1, 107, 188, 0.3);
}

.csq-submit-btn:focus {
    outline: none;
}



/* Error Message */
.csq-error {
    background: #fee;
    color: #c33;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #c33;
    font-weight: 600;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .csq-container {
        padding: 30px 20px;
    }

    .csq-question {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .csq-options {
        gap: 10px;
        margin-bottom: 25px;
    }

    .csq-option {
        padding: 14px 16px;
    }

    .csq-option-text {
        font-size: 14px;
    }

    .csq-submit-btn {
        width: 100%;
        padding: 13px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .csq-container {
        padding: 20px 15px;
    }

    .csq-question {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .csq-options {
        gap: 8px;
        margin-bottom: 20px;
    }

    .csq-option {
        padding: 12px 14px;
    }

    .csq-option input[type="radio"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }

    .csq-option-text {
        font-size: 13px;
    }

    .csq-submit-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Animation for option entrance */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.csq-option {
    animation: slideIn 0.3s ease;
}

/* Print styles */
@media print {
    .csq-submit-btn {
        display: none;
    }
}