body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f8;
  text-align: center;
  padding: 20px;
}

.Highlights {
  color: rgb(128, 128, 128);
}

#popupContainer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.popupCard {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 15px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  animation: fade 2s ease-in-out;
}

@keyframes fade {
  0% { opacity: 0; transform: scale(0.95); }
  10% { opacity: 1; transform: scale(1); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: scale(0.95); }
}

#balanceBox {
  margin-top: 15px;
  padding: 10px;
  border: inline-block;
  display: inline-block;
  font-size: 20px;
}

#balanceSection {
  background-color: #fbc2c2;
  border-radius: 100px;
  box-shadow: rgba(187, 44, 44, 0.2) 0 -25px 18px -14px inset,rgba(187, 44, 44, 0.15) 0 1px 2px,rgba(187, 44, 44, 0.15) 0 2px 4px,rgba(187, 44, 44, 0.15) 0 4px 8px,rgba(187, 44, 44, 0.15) 0 8px 16px,rgba(187, 44, 44, 0.15) 0 16px 32px;
  color: red;
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

#balanceSection:hover {
  box-shadow: rgba(187, 44, 44, 0.35) 0 -25px 18px -14px inset,rgba(187, 44, 44, 0.25) 0 1px 2px,rgba(187, 44, 44, 0.25) 0 2px 4px,rgba(187, 44, 44, 0.25) 0 4px 8px,rgba(187, 44, 44, 0.25) 0 8px 16px,rgba(187, 44, 44, 0.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

/* Masjiid Details */
.masjid-list {
  list-style: none;
  padding: 0;
  counter-reset: masjid-counter;
}

.masjid-list li {
  counter-increment: masjid-counter;
  position: relative;
  padding-left: 30px; /* space for number */
}

.masjid-list li::before {
  content: counter(masjid-counter) ". ";
  position: absolute;
  left: 10px;
  font-weight: bold;
  color: #00796b;
}

.masjid-list {
  list-style: none;
  padding: 0;
}

.masjid-list li.active:hover {
  background-color: #b2ebf2; /* Slightly deeper teal */
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.total-amount {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00796b;
    
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.masjid-list li {
  cursor: pointer;
  padding: 10px 0 0 30px;
  background-color: #e0f7fa;
  margin: 5px 0;
  border-radius: 5px;
  font-weight: bold;
}

.masjid-details {
  display: none;
  padding: 10px 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #00796b;
  margin-bottom: 10px;
  border-radius: 4px;
}

.masjid-amount {
  color: red;
  font-weight: 900;
}






