/* Base Style */
body {
  margin: 0;
  font-family: 'Amiri', 'Times New Roman', serif;
  background-color: #f8f8f8;
  color: #222;
  direction: rtl
}

/* Header */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 2px solid #ddd;
  padding: 10px;
  text-align: center;
  flex-wrap: wrap;
}

.header-img {
  width: 90px;
  height: auto;
  border-radius: 6px;
}

.quran-verse {
  font-size: 1.4em;
  font-family: 'Amiri', 'Scheherazade New', serif;
  color: #d4af37; /* Gold */
  text-align: center;
  flex: 1;
  padding: 0 15px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  direction: rtl;
  line-height: 1.8;
}

/* Top Navbar */
.top-nav {
  background-color: #222;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
}

.top-nav a {
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.3s;
}

.top-nav a:hover {
  background-color: #555;
}

/* Sidebar */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #333;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1000;
}

.sidebar.active {
  width: 250px;
}

.sidebar a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #444;
}

.sidebar a:hover {
  background-color: #575757;
}

.closebtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
}

/* Open Button */
.openbtn {
  font-size: 20px;
  background-color: #222;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  margin: 10px 0;
  border-radius: 4px;
}

.openbtn:hover {
  background-color: #444;
}

/* Main Content */
.content {
  margin: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.english-text h1 {
  color: #004d40;
  margin-top: 0;
}

.english-text p {
  line-height: 1.8;
  text-align: justify;
  font-size: 1.05rem;
}

.atext {
  direction: rtl !important;
  unicode-bidi: bidi-override !important;
  text-align: right !important;
  font-family: "Amiri", "Scheherazade", serif;
  display: block; /* ensures proper paragraph flow */
}

/* Side Title (inline label) */
.side-title {
  display: inline-block;
  font-weight: bold;
 text-align: left !important;
  color: #0a3d62;      /* dark blue */
  background-color: #e8f0fe; /* soft highlight background */
  border-right: 4px solid #0a3d62;
  padding: 2px 8px;
  margin-left: 8px;
  border-radius: 4px;
}

/* Bottom Navigation */
.bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #004d40;
  position: relative;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.bottom-nav a {
  padding: 10px 20px;
  background-color: #00796b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.bottom-nav a:hover {
  background-color: #009688;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .quran-verse {
    font-size: 1.1em;
    padding: 10px;
  }

  .header-img {
    width: 65px;
  }

  .top-nav a {
    font-size: 0.9em;
    padding: 8px;
  }

  .content {
    margin: 10px;
    padding: 15px;
  }

  .bottom-nav {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }
}
