.form-check-input.score_switch,
.form-check-input.conversion {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
}

.SampleCastingPhotosContainer img {
  height: auto;
  max-width: 180px;
  /* margin-right: 4px; */
  /* border: 2px solid lightslategray; */
  /* border-radius: 5px; */
}

.uploadImgVideoSlider .slider_item img {
  /* margin-right: 5px; */
  /* border: 2px solid lightslategray; */
  /* border-radius: 5px; */
}
.uploadImgVideoSlider .slider_item iframe {
  /* padding-right: 10px; */
}

/* Payment Success Modal */
.payment-success {
  text-align: center;
  padding: 40px 20px;
}

.payment-success .pay_checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #28a745;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.3s ease;
}

.payment-success .pay_checkmark svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: drawCheck 0.4s ease 0.1s forwards;
}

.payment-success h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.payment-success p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.payment-success .amount {
  font-size: 36px;
  font-weight: 700;
  color: #28a745;
  margin-bottom: 30px;
}

.payment-success .details {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
}

.payment-success .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.payment-success .detail-row:last-child {
  border-bottom: none;
}

.payment-success .detail-label {
  font-weight: 500;
  color: #555;
}

.payment-success .detail-value {
  color: #333;
}

.payment-success .pbutton {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.payment-success .pbutton:hover {
  background: #218838;
}

/* Animations */
@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes drawCheck {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .payment-success {
    padding: 30px 15px;
  }

  .payment-success h1 {
    font-size: 24px;
  }

  .payment-success .amount {
    font-size: 28px;
  }
}
