body {
  font-family: "Cairo", sans-serif;
  background: linear-gradient(135deg, #e0f2f1, #f1f8e9);
  margin: 0;
  padding: 20px;
  color: #333;
}
.logo {
  text-align: center;
  margin-bottom: 30px;
}
.logo img {
  width: 160px;
  border: 2px solid #1b5e20;
  border-radius: 12px;

  padding: 4px;
}
h3 {
  text-align: center;
  padding: 15px;
  color: #fff;
  margin-bottom: 35px;
  font-size: 20px;
  background-color: #ff8202;
  border-radius: 12px;
}


.buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: nowrap; /* يخليهم جمب بعض مهما كانت الشاشة صغيرة */
}

.btn {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
    white-space: nowrap; /* يمنع تقطيع الكلام في الشاشات الصغيرة */
}

.green {
    background-color: #2e7d32;
}
.green:hover {
    background-color: #1b5e20;
}

.orange {
    background-color: #ff8202;
}
.orange:hover {
    background-color: #e67600;
}

/* تحكم إضافي للشاشات الصغيرة جدًا */
@media (max-width: 350px) {
    .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}

.branch {
  background-color: #fff;
  border: 2px solid #2e7d32;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all .2s ease;
}
.branch-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.branch-header i {
  font-size: 22px;
  margin-left: 10px;
  transition: transform 0.5s;
}
.branch-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #f9fbfc;
  color: #555;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.branch-content ul {
  list-style: none;
  padding-right: 0;
  margin: 15px 0;
}
.branch-content li {
  margin-bottom: 8px;
}
footer {
  background-color: #1b5e20;
  color: white;
  padding: 25px 20px;
  margin-top: 40px;
  text-align: center;
  border-radius: 12px;
}
footer h2 {
  margin-bottom: 15px;
}
footer a {
  color: white;
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s;
}
footer a:hover {
  color: #c8e6c9;
}

/* تنسيق البحث */
.search-container {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

#searchInput {
  width: 90%;
  max-width: 500px;
  padding: 12px 20px;
  border: 2px solid #1b5e20;
  border-radius: 12px;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  outline: none;
}

#searchInput:focus {
  border-color: #00796b;
  box-shadow: 0 4px 12px rgba(0, 121, 107, 0.2);
}

