/* =========================================================
   🌐 القواعد العامة لجميع الصفحات
   ========================================================= */
body {
  font-family: "Cairo", sans-serif;
  direction: rtl;
  text-align: center;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

/* الصندوق الرئيسي العام */
.main-box, .search-box {
  background: #fff;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

/* العناوين العامة */
h1 {
  color: #0d6efd;
  font-weight: bold;
  margin-bottom: 20px;
}

p {
  color: #444;
  font-size: 17px;
  margin-bottom: 25px;
}

/* الأزرار الموحدة */
.btn-primary {
  background-color: #1565c0;
  border: none;
  font-size: 18px;
  padding: 10px 25px;
  border-radius: 10px;
}

.btn-primary:hover {
  background-color: #0d47a1;
}

/* =========================================================
   🧭 تخصيصات الصفحة (باستخدام body class)
   ========================================================= */

/* صفحة البحث */
body.search-page {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.search-box input[type="email"] {
  direction: ltr;
  text-align: left;
}
.search-box h6 {
  color: #112849;
  font-weight: bold;
  margin-bottom: 20px;
}

/* تنبيهات صفحة البحث */
.alert-box {
  direction: rtl;
  text-align: start;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
}
.alert-main {
  background-color: #c7868c;
  color: #fff;
  font-weight: bold;
}
.alert-warn {
  background-color: #fff3cd;
  color: #856404;
}
.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
}
.alert-secondary {
  background-color: #e2e3e5;
  color: #383d41;
}

/* صفحة الدعم الفني */
body.support-page {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}
.support-page .main-box {
  max-width: 600px;
  text-align: right;
}
.support-page h1 {
  text-align: center;
  color: #0d6efd;
}
.support-page .form-label {
  font-weight: 600;
}
.support-page .btn-primary {
  width: 100%;
  font-weight: bold;
}
.back-link {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
  color: #6c757d;
}
.back-link:hover {
  color: #0d6efd;
}

/* صفحة إرسال البريد */
body.mail-page {
  background-color: #f8f9fa;
}
.mail-page .main-box {
  max-width: 600px;
  text-align: center;
}
.mail-page h1 {
  color: #0d6efd;
  font-weight: bold;
  margin-bottom: 25px;
}
