/* styles.css - تحسينات واجهة وخفيف انيميشن */
body { margin: 0; padding: 0; }

/* تلميحات بسيطة للتمرير */
#output::-webkit-scrollbar { height: 8px; width: 8px; }
#output::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 8px; }

/* أنيميشن تحميل */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(110,231,183,0.0); }
  70% { box-shadow: 0 0 20px 6px rgba(110,231,183,0.04); }
  100% { box-shadow: 0 0 0 0 rgba(110,231,183,0.0); }
}
#runBtn { animation: pulseGlow 3s infinite; }

/* ثابتة الواجهة: منع العناصر من التحرك بشكل مفاجئ */
textarea, #output { transition: box-shadow .12s ease, transform .08s ease; }

/* watermark رقيق في الزاوية */
body::after {
  content: "abdelhamed nada • 01086144345";
  position: fixed;
  bottom: 8px;
  left: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  user-select: none;
}

/* responsive tweaks */
@media (max-width: 768px) {
  #codeEditor { height: 44vh !important; }
}