/* style.css - تنسيق احترافي حديث لجميع الصفحات */

/* خطوط عربية من Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap');

body {
  font-family: 'Cairo', sans-serif;
  background-color: #f7f9fc;
  color: #333;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

/* عنوان الموقع */
.site-header {
  text-align: center;
  margin-bottom: 30px;
}

.site-header h1 {
  color: #344767;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner-img {
  width: 100%;
  max-width: 800px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

/* صندوق البحث */
.search-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0,0,0,.08);
  margin: 20px auto;
  max-width: 600px;
}

.search-box input {
  border-radius: 10px 0 0 10px;
  border: 1px solid #ddd;
}

.search-box button {
  border-radius: 0 10px 10px 0;
  background-color: #344767;
  color: #fff;
  transition: all .3s;
}

.search-box button:hover {
  background-color: #2b3a56;
}

/* الجدول (عرض النتائج) */
.table-custom {
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,.07);
}

.table-custom th {
  background-color: #344767;
  color: #fff;
}

.table-custom td {
  vertical-align: middle;
}

/* iframe لعرض ملفات PDF */
.pdf-frame {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

/* تنبيهات ورسائل */
.alert-custom {
  border-radius: 10px;
  text-align: center;
}

/* الأزرار */
.btn-custom {
  border-radius: 8px;
  transition: transform .2s;
}

.btn-custom:hover {
  transform: translateY(-2px);
}