.zakat-list-button {
  margin-bottom: 15px;
  padding: 10px 15px;
  background: #2E7D32;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.zakat-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.zakat-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-height: 80%;
  overflow-y: auto;
  border-radius: 6px;
}

.zakat-close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.zakat-entry {
  margin-bottom: 10px;
}

.custom-marker {
  background: transparent;
}

.marker-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 17px;
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.error-marker {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid #D32F2F;
  position: relative;
}

.error-marker span {
  position: absolute;
  top: 8px;
  left: -4px;
  color: white;
  font-weight: bold;
  font-size: 16px;
}

.custom-marker {
  background: transparent;
}

.marker-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  text-align: center;
}

/* Triangle erreur */
.triangle-marker {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid red;
  position: relative;
}

.triangle-marker span {
  position: absolute;
  top: 8px;
  left: -6px;
  color: white;
  font-weight: bold;
  font-size: 14px;
}