/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  direction: rtl; /* Set text direction to right-to-left */
}

main {
  flex: 1; /* Pushes the footer to the bottom */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden; 
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  background-color: #111010;
}

/* Title */
.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 50px;
}

/* Player Container */
.player-container {
  background: #201f1f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 350px;
  text-align: center;
  align-self: center;
  margin-top: 102px;
}

#soora-name{
font-size: 18px;
font-weight: bold;
color: #ffffff;


}

/* Seek Bar */
#seekBar {
  width: 100%;
  height: 5px;
  margin-top: 10px;
  appearance: none;
  border-radius: 5px;
  cursor: pointer;
  background: linear-gradient(to right, white 0%, #555 0%);
}

/* Custom Track - Full Seek Bar */
#seekBar::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  position: relative;
}

/* Custom Thumb (Handle) for WebKit */
#seekBar::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -3px;
}

/* Custom Thumb for Firefox */
#seekBar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}

/* Firefox - Show Played Progress */
#seekBar::-moz-range-progress {
  background: white;
  height: 5px;
}

/* Time Display */
.time-display {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 14px;
  color: #bbb;
}

/* Control Buttons */
.controls {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.btn {
  flex: 1;
  margin: 0 5px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.btn.play {
  background-color: #000000;
  color: white;
}

.btn.loop {
  background-color: #000000;
  color: white;
}

.btn.back {
  background-color: #000000;
  color: white;
}

.btn:hover {
  opacity: 0.8;
}

header {
  background: #000000;
  color: #fff;
  padding: 30px;
  text-align: center;
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


button:hover {
  background: #ffffff;
  transform: translateY(-2px);
  color: #000000;
}

/* Footer - Stays at Bottom */
footer {
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 30px;
  width: 100%;
  position: fixed;
  bottom: 0;
  font-size: 20px;
}