

.delete-modal .modal-content {
  background: #4d8db3;
  border-radius: 15px;
  border: none;
  padding: 20px;
}

.delete-modal-body h2 {
    color: #2e7d32;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.delete-modal-body p {
  color: #fff;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 30px;
}

.delete-btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.delete-btn-group .btn {
  width: 120px;
  height: 45px;
  border-radius: 8px;
  border: none;
  font-size: 22px;
  font-weight: 700;
}

.yes-btn {
  background: #fff !important;
  color: red !important;
}

.no-btn {
  background: #fff !important;
  color: #000 !important;
}

.yes-btn:hover,
.no-btn:hover {
  opacity: 0.9;
}


@media(min-width:0px) and (max-width:767.98px){
    .delete-modal-body h2 {
    font-size: 16px;
    
}

.delete-btn-group .btn {
    width: 80px;
    height: 30px;
    font-size: 17px;
    
}
}