/* استيراد خط Tajawal من Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap');

/* الألوان الأساسية للموقع */
:root {
  --primary-color: #024138ff;
  --secondary-color: #b5b971ff;
  --text-color: #ffffff;
  --form-bg-color: #f0f2f5;
  --border-radius-soft: 8px;
  --red-danger: #dc3545;
  --green-success: #28a745;
  --blue-info: #17a2b8;
  --tree-line-color: #797c55;
  --tree-node-bg: #035a50;
  --tree-node-text: #ffffff;
  --tree-root-bg: #034f47;
}

/* الأنماط العامة للموقع */
body {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--primary-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  direction: rtl;
  position: relative;
}

/* ❌ تمت إزالة العنصر الزائف body::before لتجنب تكرار الشعار */

/* الأنماط الخاصة بالشريط العلوي */
.main-header {
  background-color: var(--primary-color);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: relative;
}

/* 💡 تعديل جديد: إعادة تنسيق الهيدر بشكل صحيح */
.main-nav-and-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav-and-actions ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-nav-and-actions a,
.main-nav-and-actions .notification-icon {
  color: var(--text-color);
  text-decoration: none;
  font-size: 24px;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav-and-actions a:hover,
.main-nav-and-actions .notification-icon:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

/* الأنماط الخاصة بالحاويات (Containers) */
.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: var(--tree-node-bg);
  border-radius: var(--border-radius-soft);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* تنسيق صندوق تسجيل الدخول */
.login-container {
  background-color: var(--tree-node-bg);
  padding: 40px;
  border-radius: var(--border-radius-soft);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 350px;
  margin: auto;
  position: relative;
}

.login-container h2 {
  color: var(--text-color);
  margin-bottom: 25px;
}

/* أزرار وعناصر التحكم */
.btn {
  font-family: 'Tajawal', sans-serif;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius-soft);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: bold;
  display: inline-block;
}
.btn:hover {
  background-color: #e0e4a6;
  color: var(--primary-color);
}

/* أنماط خاصة لأزرار الإجراءات */
.btn-action {
  font-size: 14px;
  padding: 6px 12px;
  margin: 0 5px;
}

.btn-edit {
  background-color: var(--blue-info);
  color: var(--text-color);
}
.btn-edit:hover {
  background-color: #117a8b;
}

.btn-disable {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}
.btn-disable:hover {
  background-color: #e0e4a6;
}

.btn-delete {
  background-color: var(--red-danger);
  color: var(--text-color);
}
.btn-delete:hover {
  background-color: #bd2130;
}

/* رسائل الخطأ والنجاح */
.error-message {
  color: #ff6b6b;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.success-message {
  color: #6bff6b;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

/* تنسيق حقول الإدخال */
.form-group {
  margin-bottom: 20px;
  text-align: right;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #4a6c6a;
  border-radius: var(--border-radius-soft);
  box-sizing: border-box;
  background-color: #035a50;
  color: var(--text-color);
  font-family: 'Tajawal', sans-serif;
}

/* تنسيق الروابط بشكل عام */
a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* تنسيق روابط التسجيل */
.register-link, .back-link {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-color);
}

/* تنسيق الجدول في لوحات التحكم */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

th, td {
  padding: 12px 15px;
  border: 1px solid #4a6c6a;
  text-align: right;
  color: var(--text-color);
}

th {
  background-color: #035a50;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #034f47;
}

/* تنسيق الملف الشخصي */
.profile-info {
  border: 1px solid #4a6c6a;
  padding: 20px;
  border-radius: var(--border-radius-soft);
  background-color: #035a50;
  margin-top: 20px;
  text-align: right;
}

.profile-info strong {
  color: var(--secondary-color);
  display: inline-block;
  width: 150px;
}

/* تنسيق الشعار */
.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  height: 100px; /* أو أي حجم مناسب */
}

/* تنسيق شجرة العائلة - عرض تسلسلي */
.family-sequence h3 {
  color: var(--secondary-color);
  border-bottom: 1px solid #4a6c6a;
  padding-bottom: 5px;
}
.view-options {
  text-align: center;
  margin-bottom: 20px;
}
.view-options .btn {
  margin: 0 10px;
}
.view-options .btn.active {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

/* أنماط الهيكل الشجري الكامل */
.tree-structure {
  text-align: center;
}

/* 💡 تعديل جديد: تقليل المسافات */
.tree-structure ul {
  position: relative;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding-top: 15px;
}

/* 💡 تعديل جديد: تقليل المسافات وجعلها مدمجة */
.tree-structure li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 2px;
  margin: 0 5px;
}

/* 💡 تعديل جديد: إعادة الخطوط الرأسية */
.tree-structure li::before,
.tree-structure li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 1px solid var(--tree-line-color);
}
.tree-structure li::before {
  height: 10px;
  top: -10px;
}
.tree-structure li::after {
  height: 100%;
}
.tree-structure ul::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  border-top: 1px solid var(--tree-line-color);
  z-index: 0;
}

/* 💡 تعديل جديد: سهم أسفل العقدة */
.tree-structure .node-content::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--tree-line-color);
}

/* 💡 تعديل جديد: سهم أسفل الخط الأفقي */
.tree-structure ul::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  border-top: 1px solid var(--tree-line-color);
  z-index: 0;
}
.tree-structure ul::before:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--tree-line-color);
  z-index: 1;
}

.tree-structure li:only-child::before,
.tree-structure li:only-child::after {
  border: none;
}

.tree-structure li:only-child .node-content::after {
  border: none;
}

.tree-structure .node-content {
  background: var(--tree-node-bg);
  color: var(--tree-node-text);
  padding: 5px 8px; /* تقليل المسافة الداخلية */
  border-radius: var(--border-radius-soft);
  white-space: normal; /* السماح بتعدد الأسطر */
  z-index: 1;
  position: relative;
  border: 1px solid #4a6c6a;
  text-align: center;
  min-width: 80px; /* تقليل الحد الأدنى للعرض */
  font-size: 12px; /* تقليل حجم الخط */
  line-height: 1.2;
}

/* تنسيق العقدة الجذرية */
.tree-structure > ul {
  padding-top: 20px;
}
.tree-structure > ul::before {
  border: none;
}
.tree-structure > ul > li::before {
  border: none;
}

/* تنسيق قسم اختيار الفئات */
.category-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.category-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  font-size: 16px;
}

.category-label:hover {
  background-color: #f9f9f9;
  border-color: #007bff;
}

.category-label input[type="checkbox"] {
  appearance: none;
  width: 12px;
  height: 12px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.category-label input[type="checkbox"]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.category-label input[type="checkbox"]:checked::after {
  content: '✓';
  color: white;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.notification-container {
  position: relative;
  display: inline-block;
}

/* تنسيق أيقونة الإشعارات */
.notification-icon-link {
  position: relative;
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.notification-icon-link:hover {
  color: var(--secondary-color);
}

.notification-icon-link i {
  font-size: 24px;
}

.notification-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: var(--red-danger);
  color: var(--text-color);
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1;
}

.notification-badge {
  position: absolute;
  top: 0px;
  right: -8px;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1;
}

.notification-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #024138ff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 250px;
  z-index: 1000;
  padding: 10px;
}

.notification-dropdown.active {
  display: block;
}

.notification-dropdown p {
  margin: 0 0 10px 0;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.notification-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notification-dropdown li {
  padding: 8px 0;
}

.notification-dropdown a {
  text-decoration: none;
  color: #333;
  display: block;
}

.notification-dropdown a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}

.main-footer {
  background-color: #b5b971ff;
  color: white;
  padding: 20px 0;
  text-align: center;
  margin-top: 50px;
}

/* تنسيق القائمة المنسدلة وزر تحديد الكل */
.invitation-select-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.invitation-select-group select {
  width: 250px;
  font-size: 16px;
  padding: 8px 12px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  font-family: inherit;
  font-weight: normal;
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.invitation-select-group .btn {
  padding: 8px 15px;
}

/* تنسيقات خاصة بالصفحة الرئيسية الجديدة */
.hero-section {
  text-align: center;
  padding: 50px 20px;
  background-color: var(--tree-node-bg);
}

.hero-section h1 {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.hero-section p {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 40px;
}

/* تنسيق الأيقونات بشكل عمودي في عمودين */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  gap: 30px;
}

.hero-card-col {
  display: flex;
  align-items: center;
  text-align: right;
  background-color: var(--tree-root-bg);
  padding: 20px;
  border-radius: var(--border-radius-soft);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: var(--text-color);
}

.hero-card-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.hero-card-col h3 {
  margin: 0;
  font-size: 1.2rem;
  margin-right: 15px;
}

.icon-large {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

/* تنسيق الجرس ليكون متناسقًا مع الأيقونات الأخرى */
.notification-item {
  position: relative;
}

.notification-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  font-size: 24px;
  color: var(--text-color);
  transition: color 0.3s, background-color 0.3s;
}

.notification-icon:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
}

.notification-icon i {
  font-size: 24px;
}


/* تنسيق قسم المرفقات */
.attachments {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #4a6c6a; /* لون حدود متناسق */
  border-radius: var(--border-radius-soft);
  background-color: var(--tree-node-bg);
}

.attachments h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.attachment-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* تنسيقات زر التحميل */
.download-btn {
  display: inline-flex; /* يجعل الأيقونة والنص في سطر واحد */
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: bold;
  padding: 12px 25px; /* زيادة حجم الزر */
  border-radius: var(--border-radius-soft);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.download-btn:hover {
  background-color: #e0e4a6;
  color: var(--primary-color);
}

.download-btn i {
  font-size: 1.2rem; /* حجم الأيقونة */
  margin-left: 10px; /* مسافة بين الأيقونة والنص */
  color: var(--primary-color); /* لون الأيقونة */
}

/* تنسيقات قائمة الفعاليات */
.activities-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.activity-card {
  background-color: var(--tree-node-bg);
  padding: 20px;
  border-radius: var(--border-radius-soft);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.activity-card:hover {
  transform: translateY(-5px);
}
.activity-card h3 {
  color: var(--secondary-color);
  margin-top: 0;
}
.activity-date {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.activity-description {
  color: var(--text-color);
  margin-bottom: 20px;
}
.btn-view {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: var(--border-radius-soft);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-view:hover {
  background-color: #e0e4a6;
  color: var(--primary-color);
}