/* Flex wrapper */
.search-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

#surah-list { flex: 0 0 280px; }
#tafsir-display { flex: 1; }

.surah-item { padding: 8px; cursor: pointer; border-bottom: 1px solid #ddd; }
.surah-item:hover { background: #f0f0f0; }
.ayah { margin-bottom: 15px; padding: 10px; border-bottom: 1px solid #eee; }

/* Arabic Qur'an text */
.quran {
  font-family: 'Amiri', serif;
  font-size: 22px;
  line-height: 2;
  color: darkgreen;
  direction: rtl;
  text-align: right;
}

/* Arabic Surah name in sidebar */
.surah-arabic {
  font-family: 'Amiri', serif;
  font-size: 18px;
  direction: rtl;
  text-align: right;
  display: block;
  color: #333;
  transition: color 0.3s, font-weight 0.3s;
}
.surah-item:hover .surah-arabic {
  font-weight: bold;
  color: green;
}
.surah-item.active .surah-arabic {
  font-weight: bold;
  color: green;
}

/* Translation */
.translation {
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.8;
  color: darkblue;
  margin-top: 5px;
  text-align: left;
}

/* Tafsir */
.tafsir {
  font-family: 'Merriweather', serif;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 5px;
  font-style: italic;
  display: none;
  text-align: justify;
  color: #333;
}

.ayah-actions {
  margin-top: 6px;
}
.ayah-actions button {
  margin-right: 6px;
  padding: 4px 10px;
  font-size: 14px;
  cursor: pointer;
}

.share-links {
  margin-top: 6px;
  font-size: 14px;
}
.share-links a {
  margin-right: 8px;
  text-decoration: none;
  color: #0066cc;
}

.search-box { margin-bottom: 10px; position: sticky; top: 0; background: #fff; padding: 10px; z-index: 10; border-bottom: 1px solid #ddd; }
.pagination { margin-top: 15px; text-align: center; }
.pagination button { margin: 0 3px; padding: 6px 12px; }
mark { background: yellow; font-weight: bold; }
.search-tips { font-size: 13px; color: #555; margin-top: 5px; }

/* 📱 Responsive */
@media (max-width: 768px) {
  .search-wrapper { flex-direction: column; }
  #surah-list { flex: 1; max-width: 100%; order: 1; }
  #tafsir-display { order: 2; }
}

.basmala-intro {
  text-align: center;
  margin: 25px 0;
}

.basmala-intro .basmala-img {
  max-width: 400px;   /* proportionally resize */
  width: 100%;
  height: auto;
}
mark {
  background-color: yellow;
  color: black;
  padding: 0 2px;
  border-radius: 2px;
}
/* Force yellow highlight for search matches */
mark {
  background-color: yellow !important;
  color: black !important;
  font-weight: bold;
  padding: 0 3px;
  border-radius: 3px;
}
