/* ihadis.com 100% Pixel-Perfect Hadith Card & Layout CSS */

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Kalpurush&family=SolaimanLipi&display=swap');

.hadith-page-container {
  display: flex;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  align-items: flex-start;
}

/* Left Sidebar */
.hadith-sidebar {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.hadith-tab-buttons {
  display: flex;
  background: var(--bg-primary);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

.hadith-tab-btn {
  flex: 1;
  padding: 0.55rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.hadith-tab-btn.active {
  background: #10b981;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.sidebar-search-box {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 25px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  outline: none;
}

.sidebar-book-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
  margin-bottom: 0.4rem;
}

.sidebar-book-item:hover, .sidebar-book-item.active {
  background: rgba(16, 185, 129, 0.15);
  border-left: 4px solid #10b981;
}

.book-letter-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-book-item.active .book-letter-badge {
  background: #10b981;
  color: #ffffff;
}

/* Right Main Area */
.hadith-main {
  flex: 1;
  min-width: 0;
}

.hadith-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hadith-breadcrumb a {
  color: #10b981;
  text-decoration: none;
}

.hadith-book-header-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.hadith-jump-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
}

.hadith-jump-input {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
}

.hadith-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hadith-table th, .hadith-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.hadith-table th {
  background: var(--bg-secondary);
  color: var(--text-gold);
  font-weight: 700;
  font-size: 0.9rem;
}

/* IHADIS.COM PIXEL-PERFECT CARD STYLING */
.hadith-card-ihadis {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hadith-card-ihadis:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

.hadith-header-ihadis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hadith-header-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #10b981;
}

.hadith-flower-icon {
  width: 24px;
  height: 24px;
  color: #10b981;
}

.hadith-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-sahih {
  background: #10b981;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.95rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
}

.action-btn-ihadis {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.15rem;
  cursor: pointer;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.action-btn-ihadis:hover {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
}

/* Beautiful Large Arabic Uthmani Text */
.hadith-arabic-text {
  font-family: 'Amiri', 'Traditional Arabic', 'Scheherazade', 'KFGQPC Uthman Taha Naskh', serif;
  font-size: 1.75rem;
  line-height: 2.4;
  direction: rtl;
  text-align: right;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Bold Emerald Green Narrator Line */
.hadith-narrator-line {
  font-weight: 800;
  color: #10b981;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Bengali Translation Text */
.hadith-bengali-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* Reference Container Box (Exact ihadis.com Style) */
.hadith-reference-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hadith-page-container {
    flex-direction: column;
  }
  .hadith-sidebar {
    width: 100%;
    position: static;
    max-height: none;
  }
  .hadith-card-ihadis {
    padding: 1.25rem 1.25rem;
  }
}
