body { display: flex; align-items: center; /* لتوسيط عمودي */ justify-content: center; /* لتوسيط أفقي */ direction: rtl; margin: 0; min-height: 100vh; background: linear-gradient(180deg,#fff 0%,#f7f8fb 100%); font-family:"Segoe UI", Tahoma, "Helvetica Neue", Arial, system-ui, sans-serif; } .card { width: 100%; max-width: 500px; background: var(--panel); border-radius: 18px; padding: 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; align-items: center; /* لتوسيط كل العناصر عموديًا */ text-align: center; /* لتوسيط كل النصوص */ } h1, p, .small, footer { text-align: center; /* تأكد من أن كل النصوص متوسطة */ } .code-area { display: flex; gap: 12px; align-items: center; justify-content: center; /* لتوسيط الكود والزر أفقيًا */ background: #fff; padding: 14px; border-radius: 12px; border: 1px solid rgba(11,18,32,0.04); width: fit-content; margin: 0 auto; } .actions { width: 100%; display: flex; gap: 10px; justify-content: center; /* لتوسيط الأزرار أفقيًا */ } .actions .btn-action { flex: none; /* الأزرار لا تتمدد على كامل العرض */ }