  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
  /* reader.css */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}
body {
   font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ecf0f3;
  color: #333333;
}

/* Media Queries */

.suras-section {
  margin-top: 70px;
  padding: 40px 20px;
  text-align: center;
}
.suras-section h2{
  font-size: 2rem;
  margin-bottom: 2rem;
}
.suras-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sura-item {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 5px 5px 10px #d0d0d0, -5px -5px 10px #ffffff; /* تأثير النيو-موريزم */
   border-radius: 10px;
   border: 2px solid #d0d0d0;
}
.sura-item a{
  margin-top: 4%;
  margin-left: 60%;
  color: #333333;
  font-size: 1.5rem;
}

.sura-title {
  position: absolute;
  font-size: 18px;
}

button {
  background-color: #3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #1abc9c;
}

footer {
  background-color: #333;
  padding: 15px 0;
  text-align: center;
}

/* Music Player */
.music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #222;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

.music-player.hidden {
  display: none;
}

.player-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.sura-name {
  font-size: 18px;
  font-weight: bold;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.control-btn {
  background-color: #0ef;
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 24px;
  transition: background-color 0.3s;
}

.control-btn:hover {
  background-color: #09c;
}

.progress-container {
  width: 100%;
  margin: 10px 0;
}
.container p{
  color: #fff;
  font-size: 1rem;
  margin: 1rem 4rem 0;
}
#seekBar {
  width: 100%;
  background-color: #333;
  height: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.volume-control {
  width: 100%;
}

#volumeControl {
  width: 100%;
  background-color: #333;
  height: 10px;
  border-radius: 5px;
  cursor: pointer;
}
/* reader.css */

/* Existing styles */

/* Styles for the small music player */
.music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.music-player.hidden {
  display: none;
}

.player-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.player-controls {
  display: flex;
  align-items: center;
}

.control-btn {
  background: #03A9F4;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}

.control-btn:hover {
  background: #09c;
}

.progress-container, .volume-control {
  width: 100%;
  margin: 10px 0;
}

input[type="range"] {
  width: 100%;
}

/* Styles for the full-screen music player */
.full-screen-player {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
background: linear-gradient(135deg, #003366, #4d4d4d);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.full-screen-player.hidden {
  display: none;
}

.full-screen-player .player-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  background: transition;
  border-radius: 10px;
}

.full-screen-player .player-header .sura-name {
  font-size: 24px;
  font-weight: bold;
}

.full-screen-player .close-fullscreen-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  transition: color 0.3s;
}

.full-screen-player .close-fullscreen-btn:hover {
  color: #f00;
}

.full-screen-player .player-controls {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.center{
  text-align: center;
}
.full-screen-player .control-btn {
  background: #03A9F4;
  color: #fff;
  border: none;
  padding: 15px 30px;
  margin: 0 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.full-screen-player .control-btn:hover {
  background: #09c;
}

.full-screen-player .progress-container, 
.full-screen-player .volume-control {
  width: 80%;
  margin: 20px 0;
}

.full-screen-player .progress-container input[type="range"] {
  width: 100%;
  background: #333;
  border-radius: 10px;
}

.full-screen-player .volume-control input[type="range"] {
  width: 100%;
  background: #333;
  border-radius: 10px;
}
.yasser{
  width: 60%;
}
.mjpg{
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.music-player .player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.close-musicplayer-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.close-musicplayer-btn:hover {
  color: #ff0000; /* تغيير اللون عند المرور على الزر */
}

.full-screen-btn {
  background: none;
  border: 2px solid #000000;
  font-size: 20px;
  cursor: pointer;
}

.full-screen-btn:hover {
  color: #00ff00; /* تغيير اللون عند المرور على الزر */
}


header.navbar {
    background-color: #2C3E50;
    color: #BDC3C7;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2; /* Ensure navbar is above sidebar */
}
.navbar-content a{
  text-decoration: none;
  font-size: 2rem;
  color: #BDC3C7;
  width: 800;
}
.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
header {
    /* Add your header styles here */
    position: relative;
    z-index: 1;
}
.side_bar{
  position: fixed; 
  z-index: 31000;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: #ecf0f3;
  padding: 12px;
  box-shadow: -3px -3px 7px #ffffff,
             3px 3px 5px #ceced1,
             inset -3px -3px 7px #ffffff,
             inset 3px 3px 5px #ceced1;
 transition: all 0.3s ease;
}
.side_bar .title{
  display: flex;
  justify-content: space-evenly;
}
.side_bar .title .logo{
  font-size: 27px;
  font-weight: 600;
  color: #31344b;
}
.side_bar ul{
  margin-top: 35px;
  list-style: none;
}
.button{
  background-color: #ffffff3a;
}
.fas-1{
  color: #fff;
}
.side_bar ul a{
  color: #31344b;
  text-decoration: none;
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
  padding : 10px 25px;
  border-radius: 6px;
  box-shadow: -3px -3px 7px #ffffff,
             3px 3px 5px #ceced1;
  position: relative;
  transition: all 0.2s ease;
}
.side_bar ul i{
  margin-right: 10px;
}
.media_icons{
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.media_icons a{
  position: relative;
  margin: 0 4px;
  font-size: 17px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  box-shadow: -3px -3px 7px #ffffff,
             3px 3px 5px #ceced1;
   transition: all 0.3s ease;
}
.side_bar ul a:hover:before,
.media_icons a:hover:before{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset -3px -3px 7px #ffffff,
              inset 3px 3px 5px #ceced1;
}
.side_bar ul a:hover:before{
  border-radius: 6px;
}
.media_icons a:hover:before{
  border-radius: 50%;
}
.side_bar ul a:hover{
  color: #3498db;
}

.media_icons a:nth-child(1){
  color: #4267b2;
}
.media_icons a:nth-child(2){
  color: #000;
}
.media_icons a:nth-child(3){
  color: #e1306c;
}
.media_icons a:nth-child(4){
  color: #1da1f2;
}
label{
  font-size: 17px;
  color: #31344b;
  box-shadow: -3px -3px 7px #BDC3C7,
             3px 3px 5px #000;
  height: 37px;
  width: 37px;
  border-radius: 50%;
  text-align: center;
  line-height: 37px;
  cursor: pointer;
  transition: all 0.3s ease;
}
label:hover{
  box-shadow: inset -3px -3px 7px #ffffff,
              inset 3px 3px 5px #ceced1;
  color: #3498db;
}
#check{
  display: none;
}
.bars{
  position: absolute;
  left: 15px;
  top: 15px;
}
#check:checked ~ .side_bar{
  left: 0;
}





.content {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.card-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding: 2rem;
}

.card {
    background: #fff;
    color: #333;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.download-btn {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.download-btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
/* Responsive web*/
@media (min-width: 900px){
  .suras-list{
    display: flex;
    flex-wrap: wrap;
  }
  .sura-item span, sura-item a{
    font-size: 2rem;
  }
  .sura-item{
    padding: 2rem;
    margin: 1rem 30%;
}
.full-screen-player img{
  width: 20%;
}
.full-screen-player{
  padding: 50% auto;
  height: 100vh;
  box-sizing: border-box;
}
.sura-item a{
  margin-left: 75%;
}
}
