/* Additional styles beyond Tailwind */
.quiz-btn {
    transition: all 0.3s ease;
}

.quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.option-card {
    transition: all 0.2s ease;
    cursor: pointer;
}

.option-card:hover {
    transform: translateX(4px);
}

.option-card.selected {
    border-color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.1);
}

.progress-bar {
    transition: width 0.5s ease;
}

.trait-badge {
    background-color: rgba(139, 92, 246, 0.2);
    color: #6d28d9;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.career-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.career-item:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
    display: inline-block;
}

/* Animation for transitions */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form styles */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

/* Custom radio button styling */
.radio-container {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block;
    margin-bottom: 12px;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

.radio-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.radio-container input:checked ~ .checkmark {
    background-color: #8b5cf6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}