/*
   ====================================================
   قواعد أساسية للصفحة (تمت مراجعتها)
   ====================================================
*/
html {
    box-sizing: border-box; /* يضمن أن الـ padding لا يسبب خللاً */
    font-size: 16px;
}


*, *::before, *::after {
    box-sizing: border-box; /* يضمن أن الـ padding لا يزيد من عرض العنصر */
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #F3F3FC;
    min-height: 100vh;
}


/*
   ====================================================
   الهيدر (Header) والناف بار (Navbar) - أصبحا متجاوبين
   ====================================================
*/
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%; /* تم التعديل: استخدام نسبة مئوية */
    background-color: #f0f0f0;
}
.logo {
    height: 80px;
}
.navbar {
    display: flex;
    flex-wrap: wrap; /* يسمح للروابط بالانتقال إلى سطر جديد */
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}
.navbar a {
    color: #002060;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s ease, padding 0.3s ease, color 0.3s ease;
    padding: 8px 10px;
}
.navbar a.active {
    font-weight: bold;
    text-decoration: underline;
}
.navbar a:hover,
.navbar a.active {
    background-color: #002060;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}
.separator {
    color: #555;
    margin: 0 5px;
}

/*
   ====================================================
   الشريط السفلي (Bottom Bar) - أصبح متجاوبًا
   ====================================================
*/
.bottom-bar {
    background-color: #34495e;
    color: white;
    padding: 20px 5%; /* تم التعديل: استخدام نسبة مئوية */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/*
   ====================================================
   المحتوى الرئيسي (main) والصور
   ====================================================
*/

main {
    min-height: calc(100vh - 100px); /* مثال: 100vh هي ارتفاع الشاشة و 100px ارتفاع الهيدر والفوتر */
    padding-bottom: 50px; /* لضمان وجود مساحة كافية قبل الفوتر */

}





.home-main {
    background-color: #FBFDFE;
    min-height: 100vh;
    padding: 20px 5%; /* تم التعديل: استخدام نسبة مئوية */
    margin: 0 auto;
    color: #000000;
    text-align: center;
 margin-bottom: 40px;
}






.conference-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

h1, h2, h3 {
    color: #004d99;
}

/* Header and section titles */
.welcome-heading {
    font-size: 2.5em;
    text-align: center;
    border-bottom: 3px solid #e1e1e1;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8em;
    color: #0066cc;
    border-bottom: 2px solid #e1e1e1;
    padding-bottom: 5px;
    margin-top: 40px;
    margin-bottom: 20px;
 text-align: left;
   
}

/* Text and links */
p {
    font-size: 1.1em;
    text-align: left;
}

a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #004d99;
}

.link-list {
    list-style-type: none;
    padding-left: 0;
 text-align: left;
 
}

.link-list li {
    margin-bottom: 10px;
}

/* Awards section box */
.awards-box {
    background-color: #4ECBD9;
    border: 1px solid #c0d8f0;
    border-left: 5px solid #E838D3;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.awards-title {
    color: #317545;
    font-size: 1.5em;
    margin-top: 0;
    text-align: center;
    border-bottom: 2px dashed #004d99;
    padding-bottom: 10px;
    margin-bottom: 20px;
}


.awards-text {
    color: #03042B;
    font-size: 1.0em;
   
    text-align: left;
   
    padding: 10px;
    margin: 20px;
}


.special-word-1 {
    color: #141AE3;      /* يمكنك تغيير هذا الرمز إلى أي لون تريده */
    font-style: italic;  /* يجعل الخط مائلاً */
font-size: 1.1em;
}


.special-word-2 {
    color: #333687;      /* يمكنك تغيير هذا الرمز إلى أي لون تريده */
    font-style: italic;  /* يجعل الخط مائلاً */
font-size: 1.1em;
}

.special-word-3 {
    color: #651B94;      /* يمكنك تغيير هذا الرمز إلى أي لون تريده */
    font-style: italic;  /* يجعل الخط مائلاً */
font-weight: bold;
font-size: 1.2em;
}


.awards-title::before {
    content: "🎓"; /* The trophy emoji */
    margin-right: 8px; /* Adds space between the emoji and the name */
    font-size: 1.2em; /* Makes the emoji slightly larger */
    vertical-align: middle; /* Aligns the emoji vertically */
}

.awards-box p {
    font-size: 1em;
    font-style: italic;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .conference-container {
        margin: 20px;
        padding: 15px;
    }

    .welcome-heading {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }
}

















.home-main img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.highlight-text, .highlight-text2, .highlight-text44 {
    color: #003366;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    padding: 10px 5%; /* تم التعديل: استخدام نسبة مئوية */
    border-radius: 5px;
    max-width: 1100px;
    margin: 10px auto;
}
.highlight-text, .highlight-text44 {
    background-color: #7FFFF4;
    text-align: center;
}
.highlight-text2 {
    font-size: 1rem;
    text-align: justify;
    max-width: 1000px;
    margin: 5px auto;
    padding: 10px 5%;
}


.text-box-title {
font-size: 18px;
    color: #F54927;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    padding: 6px 5%; /* تم التعديل: استخدام نسبة مئوية */
    border-radius: 5px;
    max-width: 1100px;
    margin: 5px auto;
text-align: left;
}
.text-box-subtitle {
font-size: 16px;
    color: #003366;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    padding: 6px 5%; /* تم التعديل: استخدام نسبة مئوية */
    border-radius: 5px;
    max-width: 1100px;
    margin: 2px auto;
text-align: left;
}


text-box-content {
font-size: 14px;
    color: #000000;
    font-family: 'Arial', sans-serif;
    font-weight: normal;
    padding: 6px 5%; /* تم التعديل: استخدام نسبة مئوية */
    border-radius: 5px;
    max-width: 1100px;
    margin: 2px auto;
text-align: justify;
}




.vertical-line {
    width: 5px;
    height: 180px; /* طول الخط العمودي */
    background-color: #007bff;
    border-radius: 5px;
}

.text-content {
    flex: 1; /* يجعل هذا العنصر يملأ المساحة المتبقية */
}

/*




/* Rigstration */


.registration-page-container {
    max-width: 900px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}



.registration-page-heading {
    font-size: 1.3em;
    margin-bottom: 10px;
color: #2c3e50;
    font-weight: 600;
}


.registration-page-sub-heading,
 {
    color: #2c3e50;
    text-align: left;
font-size: 0.8em;
}

.registration-page-list-heading {
    color: #2c3e50;
    text-align: left;
font-size: 1.2em;
}



.registration-page-description {
    text-align: left;
    color: #7f8c8d;
    font-size: 1.1em;
}

/* Table styles specific to the registration page */
.registration-page-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}

.registration-page-table th,
.registration-page-table td {
    border: 1px solid rgba(223, 230, 233, 0.7);
    padding: 15px 18px;
    
}

.registration-page-table-header {
    background-color: #e6f0f5;
    font-weight: bold;
    color: #34495e;
    border-bottom: 2px solid #b3cde0;
}

.registration-page-table-row:nth-child(even) {
    background-color: #f8fbfc;
}

.registration-page-table-row:hover {
    background-color: #eaf2f8;
    transition: background-color 0.3s ease;
}


.text-align-left {
    text-align: left;
}
.text-align-center {
    text-align: center;
}

/* List styles specific to the registration page */
.registration-page-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.registration-page-list-item {
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.05em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}








   ====================================================
   تنسيقات الفقرات
   ====================================================
*/
.paragraph1 {
    font-size: 1.5rem; /* حجم خط أكبر (24 بكسل) */
    font-weight: bold;
    color: #333;
    margin-top: 0;
}

.paragraph2 {
    font-size: 1.25rem; /* حجم خط متوسط (20 بكسل) */
    color: #555;
    margin: 15px 0;
}

.paragraph3 {
    font-size: 1rem; /* حجم خط أصغر (16 بكسل) */
    color: #777;
    margin-bottom: 0;
}



.conference-info {
  text-align: center; /* توسيط النص */
  font-family: Arial, sans-serif;
}

.line1 {
  font-size: 2.5rem; /* حجم الخط الأكبر */
  font-weight: bold;
  color: white;
  margin: 0;
 text-align: center;
}

.line2 {
  font-size: 1.5rem; /* حجم الخط المتوسط */
  color: white;
  margin: 10px 0;
 text-align: center;
}

.line3 {
  font-size: 1rem; /* حجم الخط الأصغر */
  font-weight: normal;
  color: white;
  margin: 0;
 text-align: center;
}


.lineB1 {
  font-size: 1.8rem; /* حجم الخط الأكبر */
  font-weight: bold;
  color: #090E3E;
  margin: 0;
 text-align: center;
}









/* تنسيقات عامة للصفحة */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f0f2f5;
    color: #333;
 
    padding: 20px;
   direction: ltr;
    text-align: left;
}

/* حاوية رئيسية */
.tracks-container {
    max-width: 800px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tracks-container h1 {
    text-align: center;
    color: #0056b3;
    margin-bottom: 30px;
    border-bottom: 3px solid #0056b3;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

/* تنسيق البطاقة (Card) */
.track-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.track-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.track-title {
    color: #005a9c;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.track-points {
    list-style: none;
    padding: 0;
    margin: 0;
    direction: ltr;
}

.track-points li {
    background-color: #ffffff;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 3px solid #007bff;
    color: #555;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.track-points li:last-child {
    margin-bottom: 0;
}

.track-points li::before {
    content: '•';
    color: #007bff;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}














/*
   ====================================================
   الصناديق والخطوط العمودية
   ====================================================
*/
.featured-box1, .featured-boxCom, .featured-box2, .featured-box3, .featured-box4 {
    border-radius: 20px;
    width: 100%;
    margin: 15px auto;
    padding: 15px 5%; /* تم التعديل: استخدام نسبة مئوية */
    height: auto;
    max-width: 1000px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.featured-box1, .featured-boxCom { background-color: #E8E8FF; }
.featured-box2 { background: linear-gradient(135deg, #ffeb3b, #ffc107); }
.featured-box3 { background-color: #f5f5f5; border-radius: 5px; }
.featured-box4 { background: #f5f5f5; }

/*
   ====================================================
   الخطوط العمودية - أصبحا متجاوبين
   ====================================================
*/
.vertical-line-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 800px;
    margin: 15px auto;
    gap: 0px;
}
.vertical-line {
    width: 10px;
    height: 160px;
    border-radius: 5px;
background-color: #F5B027; /* لون الخط العمودي */
}


.vertical-line2 {
    width: 10px;
    height: 160px;
    border-radius: 5px;
background-color: #F5276C; /* لون الخط العمودي */
}


.text-box, .text-box2, .text-box3 {
height: 180px;
    background-color: #F5F5F5;
    padding: 4px 4%;
    height: auto;
    width: 100%;
    max-width: 800px;
    flex: 1;
    margin: 0 auto;
}
.text-box, .text-box2 {
height: 160px;
    border: 1px solid #FF5733;
    border-radius: 0 10px 10px 0;
}
.text-box2 { border-color: #800000; }
.text-box3 { align-self: center; }

/*
   ====================================================
   صور متجاوبة
   ====================================================
*/
.image-containerF {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
    background-color: #E8E8FF;
}
.image-containerF img {
    width: 22%;
    height: auto;
    object-fit: cover;
}


.committeeSpan1 {
  color: #008080; /* لون مميز */
  font-weight: bold; /* يجعل الكلمة عريضة */
}

.committeeSpan2 {
  color: #808080; /* لون مميز */
  font-weight: bold; /* يجعل الكلمة عريضة */
}






/*
   ====================================================
   الفوتر (Footer)
   ====================================================
*/
footer {
    background-color: #333;
    color: white; /* هذا يكفي في معظم الحالات */
    text-align: center;
    padding: 10px;
    /* تم حذف الخصائص التي تحدد العرض والتوسيط */

    width: 100%;          /* يجعله بعرض الشاشة كاملاً */
  /*  z-index: 1000;         يضمن أنه يظهر فوق المحتوى الآخر */
}

/* هذا الكود يضمن أن لون النص داخل الفوتر سيكون أبيض */
footer p {
    color: white;
text-align: center;
}



.committee-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 10 5%;
    text-align: left; /* تم التعديل: لمحاذاة النص لليسار */

 


     
}






















/* Main container for all committee sections */
.committee-new1-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

/* Page header styling */
.committee-new1-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.committee-new1-page-header h1 {
    font-size: 2.8em;
    color: #004d99;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 3px solid #004d99;
    display: inline-block;
}

/* Styling for each committee section */
.committee-new1-section {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.committee-new1-section-title {
    font-size: 2em;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Styling for individual member cards (Honorary, Conference Chairs) */
.committee-new1-member-card {
    background-color: #f8f8f8;
    border-left: 5px solid #00aaff;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}



.committee-new1-member-card-2 {
    background-color: #f8f8f8;
    border-left: 5px solid #19D438;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}



.committee-new1-member-card-3 {
    background-color: #f8f8f8;
    border-left: 5px solid #C119D4;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}


.committee-new1-member-card-4 {
    background-color: #f8f8f8;
    border-left: 5px solid #1ECC1B;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}

.committee-new1-member-card-5 {
    background-color: #f8f8f8;
    border-left: 5px solid #1BC3CC;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}

.committee-new1-member-card-6 {
    background-color: #f8f8f8;
    border-left: 5px solid #070BF0;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}


.committee-new1-member-card-7 {
    background-color: #f8f8f8;
    border-left: 5px solid #D41996;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}

.committee-new1-member-card-8 {
    background-color: #f8f8f8;
    border-left: 5px solid #CCC41B;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}




.committee-new1-member-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
    margin: 0;
}

.committee-new1-member-affiliation {
    font-size: 0.95em;
    color: #666;
    margin: 5px 0 0;
}
.committee-new1-member-affiliation2 {
    font-size: 0.95em;
    color: #1973D4;
    margin: 5px 0 0;
}

/* Styling for the track chairs section */
.committee-new1-track-card {
    background-color: #f8f8f8;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    text-align: left;
}

.committee-new1-track-title {
    font-size: 1.2em;
    color: #0066cc;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: left;
}

/* This is the new style for the track chair names */
.committee-new1-track-chair-name {
    font-weight: bold;
    font-size: 0.95em;
    color: #3E2E87;
    margin: 5px 0;
}

.committee-new1-track-chair-name::before {
    content: ""; /* لا يوجد محتوى مرئي */
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%; /* شكل دائري */
    background-color: #19D45E; /* لون ذهبي */
    box-shadow: 0 0 5px #19D45E, 0 0 10px #19D45E; /* تأثير التوهج */
    margin-right: 10px;
    vertical-align: middle;
}



/* Style for the bullet points next to member names */
.bullet-point {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #00aaff; /* Blue color */
    border-radius: 50%; /* Makes it a circle */
    margin-right: 10px;
    vertical-align: middle;
}

/* Style for the bullet points next to track chair names */
.track-bullet {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #008080; /* لون المثلث */
    margin-right: 10px;
    vertical-align: middle;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    .committee-new1-page-header h1 {
        font-size: 2em;
    }
    .committee-new1-section-title {
        font-size: 1.5em;
    }
    .committee-new1-section {
        padding: 20px;
    }
}
















.registration-add-new2026-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

/* Header styles */
.registration-add-new2026-header {
    text-align: center;
    border-bottom: 3px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.registration-add-new2026-header h1 {
    font-size: 2.5em;
    color: #004d99;
    margin: 0 0 10px;
}

.registration-add-new2026-header p {
    color: #666;
    font-style: italic;
    font-size: 1.1em;
}

/* Track list styles */
.registration-add-new2026-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.registration-add-new2026-track {
    background-color: #f8f8f8;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.registration-add-new2026-track:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.registration-add-new2026-track-title {
    font-size: 1.1em;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left;
}

.registration-add-new2026-topic-list {
    list-style-type: none; /* Removes default bullet points */
    padding-left: 0;
    margin: 0;
}

.registration-add-new2026-topic-list li {
    font-size: 1em;
    margin-bottom: 8px;
    color: #333;
    padding: 5px 0 5px 15px;
    border-left: 4px solid #00aaff; /* Default line color */
    margin-bottom: 10px;
    text-align: left;
}

/* Unique colors for each track's topics */
.registration-add-new2026-track:nth-child(1) li {
    border-left-color: #1a73e8; /* Blue */
}

.registration-add-new2026-track:nth-child(2) li {
    border-left-color: #e91e63; /* Pink */
}

.registration-add-new2026-track:nth-child(3) li {
    border-left-color: #ff9800; /* Orange */
}

.registration-add-new2026-track:nth-child(4) li {
    border-left-color: #4caf50; /* Green */
}

.registration-add-new2026-track:nth-child(5) li {
    border-left-color: #9c27b0; /* Purple */
}

.registration-add-new2026-track:nth-child(6) li {
    border-left-color: #00bcd4; /* Cyan */
}

.registration-add-new2026-track:nth-child(7) li {
    border-left-color: #ff5722; /* Deep Orange */
}

/* Important Dates Section */
.registration-add-new2026-dates {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 3px solid #e1e1e1;
}

.registration-add-new2026-dates-title {
    font-size: 1.2em;
    color: #004d99;
    text-align: center;
    margin-bottom: 20px;
}

.registration-add-new2026-dates-list {
    list-style-type: none;
    padding-left: 0;
    text-align: center;
}

.registration-add-new2026-dates-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.registration-add-new2026-dates-list strong {
    color: #0066cc;
}

.virtual-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 20px;
}

/* Responsive design */
@media (max-width: 768px) {
    .registration-add-new2026-container {
        margin: 20px;
        padding: 15px;
    }
    
    .registration-add-new2026-header h1 {
        font-size: 2em;
    }

    .registration-add-new2026-track-title {
        font-size: 1.3em;
    }
}












.submission-new2026-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #E8E8FF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.submission-new2026-header {
    text-align: center;
    border-bottom: 3px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.submission-new2026-header h1 {
    font-size: 2.5em;
    color: #004d99;
    margin: 0 0 10px;
}

.submission-link-btn {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.submission-link-btn:hover {
    background-color: #004d99;
}

.submission-new2026-section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f8f8;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
}

.submission-new2026-title {
    font-size: 1.5em;
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 5px;
    margin-top: 0;
    margin-bottom: 20px;
}

.submission-new2026-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.submission-new2026-list li {
    font-size: 1em;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.submission-new2026-list li::before {
    content: "➤"; /* Using a clean arrow icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #4caf50; /* A pleasant green color */
    font-size: 1.2em;
    line-height: 1.2;
}

.text-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.text-link:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .submission-new2026-container {
        margin: 20px;
        padding: 15px;
    }

    .submission-new2026-header h1 {
        font-size: 2em;
    }

    .submission-link-btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .submission-new2026-title {
        font-size: 1.3em;
    }

    .submission-new2026-list li {
        font-size: 0.95em;
        padding-left: 20px;
    }
}





















/*
   ====================================================
   تنسيقات العناوين والنصوص
   ====================================================
*/
.committee-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: left;
    color: #002060;
    margin-bottom: 30px;
}

.committee-section {
    margin-bottom: 25px;
}

.committee-role {
    font-size: 1.5rem;
    font-weight: bold;
    color: #004080;
    margin-bottom: 10px;
    border-bottom: 2px solid #004080;
    padding-bottom: 5px;
}

.committee-member {
    font-size: 1rem;
    margin: 5px 0;
    color: #333;
}

.committee-span1 {
  color: #2F76BC;          /* لون الخط: أزرق */
  font-family: 'Georgia', serif; /* نوع الخط: Georgia */
  font-style: bold;      /* ستايل الخط: مائل */
  font-size: 1.2rem;       /* حجم الخط: أكبر من المعتاد */
}

.committee-span2 {
  color: #082618;          /* لون الخط: أزرق */
  font-family: 'Georgia', serif; /* نوع الخط: Georgia */
  font-style: italic;      /* ستايل الخط: مائل */
  font-size: 1.0rem;       /* حجم الخط: أكبر من المعتاد */
}




/*  ---------------------------------- */
/*   CFP */
.cfp-container {
   max-width: 900px;
    margin: 30px auto;
    padding: 10 5%;
    text-align: left; /* تم التعديل: لمحاذاة النص لليسار */
     




}

/*
   ====================================================
   تنسيقات العناوين والقوائم
   ====================================================
*/
.cfp-page-title {
    font-size: 2.0rem;
    font-weight: bold;
    /* تم حذف: text-align: center; */
    color: #002060;
    margin-bottom: 20px;
}

.cfp-track-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cfp-track-list > li {
    margin-bottom: 25px;
}

.cfp-track-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #004080;
    margin: 0 0 10px 0;
}

.cfp-track-number {
    color: #d9534f;
}

.cfp-sub-track-list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
}

.cfp-sub-track-list li {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
}

.cfp-section-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #002060;
    margin-top: 40px;
    margin-bottom: 20px;
}

.cfp-date-item {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.cfp-date-label {
    font-weight: bold;
    color: #333;
}

.cfp-date-value {
    color: #004080;
}




/* -------------------- */
/* submission */


.submission-main-content {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 5%;
}

.submission-box {
    background-color: #F3F8FC;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left; /* محاذاة النص لليسار */

  padding-top: 20px;
  padding-right: 50px;
  padding-bottom: 20px;
  padding-left: 50px;

}

/*
   ====================================================
   تنسيقات العناوين والنصوص
   ====================================================
*/
.submission-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #002060;
    margin-bottom: 30px;
}

.submission-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #004080;
    margin-top: 30px;
    margin-bottom: 10px;
}

.highlight {
    font-weight: bold;
    color: #d9534f;
}

.submission-date-item {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.submission-date-label {
    font-weight: bold;
    color: #333;
}

.submission-date-value {
    color: #004080;
}

p {
    font-size: 1rem;
    text-align: justify;
    color: #555;
    margin-bottom: 15px;
}





.program-box {
max-width: 1200px;
    background-color: #F8F8FF; /* لون فاتح مميز للبوكس */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   padding: 15px;
    text-align: left;
}


 










/* *************** */
/* TPC */

.tpc-container {
    max-width: 1200px; /* أقصى عرض للبوكس */
    margin: 40px auto;
    padding: 20px 5%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tpc-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #002060;
    margin-bottom: 10px;
}

.tpc-description {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

/*
   ====================================================
   تنسيقات الجدول
   ====================================================
*/
.table-wrapper {
    overflow-x: auto; /* يسمح بالتمرير الأفقي على الشاشات الصغيرة */
}

table {
    width: 100%;
    border-collapse: collapse; /* يزيل المسافات بين الحدود */
    font-size: 0.9rem;
    white-space: nowrap; /* يمنع الخلايا من الالتفاف */
}

thead {
    background-color: #002060; /* لون خلفية مميز للرؤوس */
    color: white;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tbody tr:hover {
    background-color: #f1f1f1; /* تأثير عند مرور الماوس */
}

/* لون مميز للصفوف الفردية */
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}


/* ------------------- */
/* Registration  */



.registration-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 5%;
}

.registration-box {
max-width: 1200px;
    background-color: #F8F8FF; /* لون فاتح مميز للبوكس */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
    text-align: left;
}

/*
   ====================================================
   تنسيقات العناوين والنصوص
   ====================================================
*/
.registration-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: #002060;
    margin-bottom: 30px;
}

.registration-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.registration-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 20px;
}

.fees-list {
    margin-top: 30px;
}

.fee-item {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.fee-label {
    font-weight: bold;
    color: #004080;
    display: inline-block;
    min-width: 280px; /* لتنسيق المسافة بين العنوان والقيمة */
}

.fee-value {
    font-weight: normal;
    color: #d9534f;
}


/* ------------------- */
/* program  */

.program-main {
    max-width: 1200px;
    
    padding: 0 5%;
margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/*
   ====================================================
   تنسيقات الأزرار
   ====================================================
*/
.program-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-button {
    background-color: #ffe6cc;
    color: #002060;
    font-weight: bold;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
width : 400px;
}

.program-button:hover {
    background-color: #ffd9b3;
}


.program-schedule-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.schedule-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

/*
   ====================================================
   تنسيقات الجدول
   ====================================================
*/
.table-wrapper {
    overflow-x: auto; /* يتيح التمرير الأفقي على شاشات الموبايل */
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    font-size: 1rem;
   
}

.schedule-table thead th {
    font-weight: bold;
   color: #FFFFFF;
    padding: 12px 15px;
}

.schedule-table tbody tr {
    border-bottom: 1px solid #eee;
}

.schedule-table tbody td {
    padding: 12px 15px;
    color: #333;
}

.schedule-table tbody tr:hover {
    background-color: #f5f5f5;
}

.break-row {
    color: #8B4513; /* لون بني مميز */
    font-style: italic;
    font-weight: bold;
}


.online-location {
    color: #d9534f; /* لون أحمر لتنسيق كلمة "Online" */
    font-weight: bold;
}

.sub-text {
    font-style: italic;
    font-weight: normal;
    font-size: 0.9rem;
    display: block; /* لضمان ظهورها في سطر منفصل */
}



.contact-main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 5%;
}

.contact-box {
    background-color: #F8F8FF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

/*
   ====================================================
   تنسيقات العناوين والنصوص
   ====================================================
*/
.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #002060;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-text a {
    color: #004080;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #002060;
}











/*
   ====================================================
   استعلامات الوسائط (Media Queries)
   ====================================================
*/
@media (max-width: 768px) {
    /* جعل الهيدر يظهر بشكل عمودي على شاشات الموبايل */
    .top-bar-container {
        flex-direction: column;
        align-items: center;
        padding: 10px 2%;
    }
    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }
    .navbar a {
        font-size: 14px;
        padding: 5px 8px;
    }
    .vertical-line-container {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    .vertical-line {
        width: 100%;
        height: 5px;
        border-radius: 5px;
    }
    .text-box {
        width: 100%;
        border-radius: 0;
        border-top-left-radius: 0;
height: 160px;
    }
    .featured-box1, .featured-boxCom, .featured-box2, .featured-box3, .featured-box4 {
        padding: 10px 5%;
    }

 .committee-title {
        font-size: 2rem;
    }
    .committee-role {
        font-size: 1.2rem;
    }
    .track-title {
        font-size: 1rem;
    }
    .committee-member, .track-members li {
        font-size: 0.9rem;
    }


 .cfp-page-title {
        font-size: 2rem;
    }
    .cfp-track-title {
        font-size: 1.25rem;
    }
    .cfp-sub-track-list li, .cfp-date-item {
        font-size: 0.9rem;
    }
    .cfp-section-heading {
        font-size: 1.5rem;
    }



/* ------- */
 .submission-main-content {
        padding: 0 2%;
    }
    .submission-box {
        padding: 15px;
    }
    .submission-title {
        font-size: 2rem;
    }
    .submission-heading {
        font-size: 1.5rem;
    }
    p, .submission-date-item {
        font-size: 0.9rem;
        text-align: left;
    }

/* TPC */
 .tpc-title {
        font-size: 2rem;
    }
    th, td {
        padding: 10px;
        font-size: 0.8rem;
    }
    table {
        white-space: normal;
    }



/* Registration  */

 .registration-main {
        padding: 0 2%;
    }
    .registration-box {
        padding: 15px;
    }
    .registration-title {
        font-size: 2rem;
    }
    .registration-intro {
        font-size: 1rem;
    }
    .fee-item {
        font-size: 0.9rem;
        display: flex;
        flex-direction: column; /* جعل العنوان والقيمة فوق بعضهما */
    }
    .fee-label {
        min-width: auto;
    }



/* ------------------- */
/* program  */

  .program-main {
        padding: 0 2%;
    }
    .page-title {
        font-size: 2rem;
    }
    .program-button {
        font-size: 1rem;
        padding: 12px 20px;
    }

 .program-schedule-container {
        padding: 10px;
        margin: 20px auto;
    }
    .schedule-title {
        font-size: 1.8rem;
    }
    .schedule-table, .schedule-table tbody td {
        font-size: 0.9rem;
    }

 .contact-main {
        padding: 0 2%;
    }
    .contact-box {
        padding: 15px;
    }
    .contact-title {
        font-size: 2rem;
    }
    .contact-text {
        font-size: 1rem;
    }


}