/* ✅ تحميل خط الجزيرة */
@font-face {
    font-family: 'Aljazeera';
    src: url('/ads/fonts/aljazeera.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ✅ إعادة تعيين الأنماط الافتراضية وإزالة الهوامش */
* {
    font-family: 'Aljazeera', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tajawal", sans-serif;
    direction: rtl;
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100vh;
    background: #f5f5f5;
    overflow-x: hidden; /* منع التمرير الأفقي */
}

.header_a{
    color:white;
}

/* ✅ إزالة الهامش الخارجي تمامًا */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ✅ الهيدر الأول (اسم الموقع + شعار الموقع) */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #007bff;
    color: white;
    padding: 15px 20px;
    height: 75px;
    position: relative;
    overflow: hidden;
}

.site-name {
    font-size: 25px;
    font-weight: bold;
    font-family: 'Aljazeera', Arial, sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 65px;
    display: block;
}

/* ✅ الهيدر الثاني (تسجيل الدخول والتسجيل) */
.header-auth {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 5px 15px;
    background: #f8f9fa;
    overflow-x: auto;
    white-space: nowrap;
    max-width: 100%;
    direction: ltr;
}

.header-auth button {
    padding: 3px 15px;
    font-size: 15px;
    border: none;
    background: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    direction: rtl;
}

.header-auth button:hover {
    background: #0056b3;
}


/* نافذة منبثقة */
.popup2 {
    font-family: 'Aljazeera', Arial, sans-serif;
    position: relative;
    margin: 0 auto;
    background: #0056b3;
    color: white;
    padding: 5px;
    font-size: 15px;
    text-align: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.popup2 img{
    width: 100px;
    height: 20px;
}

.popup2.show {
    opacity: 1;
    visibility: visible;
}


/* ✅ الحاوية */
.container {
  max-width: 600px;
  background: white;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.p_h3{
    font-size:25px;
    color: #0056b3;
}

input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin: 10px 0;
  box-sizing: border-box;
}

button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #0056b3;
}

#status {
  margin: 15px 0;
  font-weight: bold;
  color: #1c7430;
}

#chatBox {
  display: none;
  border: 1px solid #ccc;
  padding: 10px;
  height: 250px;
  overflow-y: auto;
  background: #f8f9fa;
  border-radius: 6px;
  text-align: right;
}

/* ✅ الرسائل */
#chatBox div {
  margin: 5px 0;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 80%;
  white-space: pre-wrap;
  display: block;
}

/* ✅ لون مميز للعميل */
#chatBox .client-message {
  background-color: rgba(0, 123, 255, 0.15);
  text-align: right;
}

/* ✅ لون مميز للمدير */
#chatBox .admin-message {
  background-color: rgba(40, 167, 69, 0.15);
  text-align: right;
}

#typing {
  color: gray;
  font-style: italic;
  margin-top: 5px;
}

#messageSection {
  display: none;
  margin-top: 10px;
}

/* ✅ استجابة للشاشات الصغيرة */
@media screen and (max-width: 600px) {
  .container {
    margin: 15px auto;
    padding: 15px;
  }

.p_h3{
    font-size:20px;
    color: #0056b3;
}

  button,
  input[type="text"] {
    font-size: 15px;
  }

  #chatBox {
    height: 200px;
  }
}
