.smf-quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-family: inherit;
    direction: rtl;
}

.smf-question-block {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #eee;
}

.smf-question-text {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.smf-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.smf-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: #f1f1f1;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.smf-options label:hover {
    background: #e0e0e0;
}

.smf-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.smf-btn:hover {
    background: #005177;
}

.smf-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.smf-patterns-desc h4 {
    color: #0073aa;
    margin-top: 20px;
}

.smf-majors-list ul {
    list-style: none;
    padding: 0;
}

.smf-majors-list li {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-right: 4px solid #0073aa;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.smf-student-info {
    background: #f1f8ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #cce5ff;
}
.smf-student-info input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.smf-success-header {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.smf-personality-summary {
    background: #fff3cd;
    border-right: 5px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}
.smf-major-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.smf-major-title {
    color: #0073aa;
    margin-top: 0;
    font-size: 1.3em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.smf-major-card p {
    margin: 8px 0;
    font-size: 0.95em;
}
