.donut-donation-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 15px;
  text-align: center;
}

.checkbox-group label {
    display: block !important;
}

.checkbox-group label a {
    font-weight: 400 !important;
    color:#333 !important;
    font-size: 16px !important;
    font-family: "Manrope" !important;
}

.donut-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.donut-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.dount-counter-total {
    margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.custom-amount-container {
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.custom-amount-container label {
  font-size: 16px;
  color: #666;
  margin: 0;
  white-space: nowrap;
}

.custom-amount-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-amount-input-wrapper input[type="number"] {
  flex: 1;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 18px;
  width: 130px !important;
  text-align: center;
  transition: border-color 0.3s;
}

.custom-amount-input-wrapper input[type="number"]:focus {
  outline: none;
  border-color: #4caf50;
}

.custom-amount-input-wrapper .currency-label {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.donut-btn {
  width: 32px !important;
  height: 32px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  align-items: center !important;
  display: flex !important;
  justify-content: center !important;
}

.donut-btn:hover {
  transform: scale(1.1);
}

.donut-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.donut-icon {
  font-size: 60px;
}

.donut-count {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.donut-total {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.total-amount {
  font-weight: bold;
  margin-left: 10px;
}

.donut-donate-btn {
  width: 100%;
  padding: 15px;
  background: #4caf50;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.donut-donate-btn:hover {
  background: #45a049;
}

.donut-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.donut-modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.donut-modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
}

.donut-modal-close:hover {
  color: #000;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: normal;
}

.donut-submit-btn {
  width: 100%;
  color: white;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s;
}


