@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: poppins, sans-serif;
}

body {
  margin: 0;
  background: #e8f5e9;
  color: #1b5e20;
  text-align: center;
}

p {
    padding-left: 10px;
    padding-right: 10px;
}

.page-header {
  position: relative;
  background: #2e7d32;
  color: white;
  padding: 15px;
}

.back-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: white;
  text-decoration: none;
}

.back-btn:hover {
  opacity: 0.8;
  border: 1px solid white;
}

.qibla-container {
  margin-top: 30px;
}

.compass-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 30px auto;
}

.compass {
  width: 100%;
}

.needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  transform-origin: bottom center;
  transform: translate(-50%, -100%) rotate(0deg);
  transition: transform 0.8s ease;
}

#degreeText {
  font-weight: 600;
  margin-top: 10px;
}

footer {
  text-align: center;
  font-size: 12px;
  padding-top: 10px;
}