/* assets/css/azmoon-elec.css */

body {
    box-sizing: border-box;
    font-family: 'Tahoma', sans-serif;
}
.fade-in {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0;
    transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0);
    }
}
.question-card {
    transition: all 0.3s ease;
}
.question-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.progress-bar {
    transition: width 0.3s ease;
}
.topic-card {
    transition: all 0.3s ease;
}
.topic-card:hover {
    transform: scale(1.05);
}
.drag-item {
    cursor: move;
    transition: all 0.2s ease;
}
.drag-item:hover {
    transform: scale(1.02);
}
.drop-zone {
    min-height: 50px;
    border: 2px dashed #cbd5e0;
    transition: all 0.2s ease;
}
.drop-zone.drag-over {
    border-color: #3b82f6;
    background-color: #eff6ff;
}
.fill-blank {
    display: inline-block;
    min-width: 100px;
    border-bottom: 2px solid #3b82f6;
    margin: 0 5px;
    padding: 2px 8px;
    background-color: #f8fafc;
}
/* برای حالت انتخاب شده در سوالات جورکردنی */
.selected-left {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* ******* اصلاح نهایی: تثبیت ارتفاع کارت سؤال برای موبایل ******* */
#examPage #questionCard {
    min-height: 450px; /* حداقل ارتفاع را برای جلوگیری از پرش تعیین می‌کند */
}