/* Fonts and Base Styles */
body {
  font-family: 'Vazirmatn', 'Amiri', serif;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  color: #222;
  direction: rtl;
}

/* Remove underline from all hyperlinks */
a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  background-color: #111;
  display: flex;
  justify-content: flex-end;
  padding: 0.8em 1em;
  flex-wrap: wrap;
}

.nav-item {
  color: white;
  margin-left: 1em;
  font-size: 1.4em;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 1.8em;
  margin-top: 1em;
  color: #333;
}

/* Quick Links (Cards) */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  margin: 1em auto;
  width: 100%;
  max-width: 800px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  text-align: center;
  box-sizing: border-box;
}

.links a {
  flex: 1 1 150px; /* shorter width */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 0.5em;
  margin: 0;
  background: linear-gradient(135deg, #e3f4ff, #f8fbff);
  color: #005577;
  font-weight: bold;
  text-align: center;
  border-right: 1px solid #d0e6ee;
  border-bottom: 1px solid #d0e6ee;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.links a:hover {
  background: linear-gradient(135deg, #cceeff, #e6faff);
  color: #003344;
  transform: scale(1.02);
}

.links a:last-child {
  border-right: none;
}

/* Table Container */
.table-container {
  width: 100%;
  overflow-x: auto;
  direction: ltr; /* for smooth horizontal scroll */
  padding: 1em;
}

/* Table Styles */
table {
  direction: rtl;
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 1em;
}

th, td {
  border: 1px solid #ccc;
  padding: 0.8em;
  text-align: center;
  white-space: nowrap;
}

th {
  background-color: #f0f0f0;
  color: #333;
}

tr:hover {
  background-color: #f9f9f9;
}

.surah-link {
  color: #007bff;
  font-weight: bold;
}

.surah-link:hover {
  text-decoration: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1em;
  background-color: #eee;
  font-size: 1em;
}

/* Navbar Links (if any other sections) */
.nav-link {
  margin: 0 1em;
  color: #444;
}

.nav-link:hover {
  color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }

  .nav-item {
    font-size: 1.2em;
    margin: 0.5em;
  }

  .section-title {
    font-size: 1.5em;
  }

  table {
    font-size: 0.95em;
  }

  .table-container {
    padding: 0.5em;
  }
}

@media (max-width: 600px) {
  .links {
    flex-direction: column;
  }

  .links a {
    flex: 1 1 auto;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d0e6ee;
  }

  .links a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .nav-item {
    font-size: 1em;
  }

  table {
    font-size: 0.9em;
  }
}