/* enroll-prompt.css */
.enroll-prompt {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.12) 100%);
    border: 1px dashed rgba(139, 92, 246, 0.5); border-radius: var(--radius-lg, 16px);
    padding: 20px 24px; margin-bottom: 24px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    flex-wrap: wrap; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.enroll-prompt:hover { box-shadow: 0 6px 24px rgba(139, 92, 246, 0.08); border-color: rgba(139, 92, 246, 0.8); }

.enroll-prompt-text { flex: 1; min-width: 250px; color: var(--text-main); font-size: 13px; line-height: 1.7; }
.enroll-prompt-text strong { display: flex; align-items: center; gap: 8px; color: #8b5cf6; font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.enroll-prompt-text strong svg { width: 20px; height: 20px; }
.enroll-prompt-text span { color: var(--text-muted); }

.enroll-prompt-action { flex-shrink: 0; }
.enroll-prompt-action .btn-submit {
    padding: 12px 24px; font-size: 14px; border-radius: 8px; background: #8b5cf6;
    color: #fff; text-decoration: none; display: inline-flex; align-items: center;
    justify-content: center; border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s; font-family: inherit; font-weight: 600;
}
.enroll-prompt-action .btn-submit:hover { transform: translateY(-2px); background: #7c3aed; box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4); }

/* حالت موبایل */
@media (max-width: 600px) {
    .enroll-prompt { flex-direction: column; align-items: flex-start; padding: 16px; gap: 16px; }
    .enroll-prompt-action { width: 100%; }
    .enroll-prompt-action .btn-submit { width: 100%; }
}
