 details > summary {
          list-style: none;
        }
        details > summary::-webkit-details-marker {
          display: none;
        }
        .ui-dialog-titlebar {
  background: #f16626;
  color: white;
  font-weight: bold;
}

.modal-content {
  padding: 10px;
}

#customModal button {
  background-color: #ff9800;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

/* Modal content background */
.ui-dialog .ui-dialog-content {
  background-color: #ffffff !important;
  color: #333;
  padding: 20px;
}


/* Button pane (bottom area) */
.ui-dialog .ui-dialog-buttonpane {
  background-color: #ffffff !important;
  border-top: 1px solid #ccc;
  padding: 10px;
}

/* OK button styling */
.ui-dialog .ui-dialog-buttonpane button {
  background-color: #ffffff !important;
  color: #333;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
}

/* Optional: hover effect */
.ui-dialog .ui-dialog-buttonpane button:hover {
  background-color: #f5f5f5;
}

/* Added on 05/09/25*/

.nearby-temples-wrapper {
  margin: 20px 0 0 0;
}

.temple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.temple-header h2 {
  margin: 0;
  font-size: 20px;
}

#viewAllBtn {
  padding: 6px 12px;
  font-size: 14px;
  background-color: #0078D4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


.temple-scroll {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 10px;
  position: relative;
}

.temple-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.temple-card {
  flex: 0 0 auto;
  width: 160px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 10px;
}


.temple-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.temple-card h4 {
  font-size: 14px;
  margin: 8px 0 4px;
}

.temple-card p {
  font-size: 12px;
  color: #666;
}

.pooja-scroll {
  max-height: 400px; /* adjust as needed */
  overflow-y: auto;
  padding-right: 10px; /* space for scrollbar */
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
