/* Circular loader */
.loader {
  border: 6px solid #c8e6c9;
  border-top: 6px solid #2e7d32;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin: 60px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mosque cards */
.nearby-container {
  padding: 12px;
}

.mosque-card {
  background: white;
  border: 1px solid #1b5e20;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}

.mosque-name {
  font-weight: 600;
  margin-bottom: 6px;
}

.direction-btn {
  background: #2e7d32;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 6px;
}

.no-mosque {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  padding: 0 20px;
}

.hidden {
  display: none;
}

.place-address {
  font-size: 13px;
  margin: 4px 0;
}

.place-distance {
  font-size: 12px;
  color: #2e7d32;
  font-weight: 600;
}
