  .custom-book-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin: 20px;
    text-decoration: none;
  }
  .custom-book-btn:hover {
    background-color: #0056b3;
    color: #fff;
  }

  .custom-modal-content {
    border-radius: 8px;
    overflow: hidden;
  }

  .custom-modal-header {
    color: white;
    padding: 20px;
  }

  .custom-modal-body {
    padding: 20px;
    background: #f9f9f9;
  }

  .custom-info-box {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    height: 180px;
    line-height: initial;
  }

  .custom-info-box h5 {
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
  }

  .custom-detail-box {
    display: flex;
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    align-items: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    line-height: 25px;
    font-size: medium;
  }

  .custom-detail-box h5 {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
  }

  .custom-icon img {
    width: 40px;
    margin-right: 15px;

  }

  .custom-detail-box h4 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
  }

  .custom-detail-box ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
  }

  .custom-detail-box ul li {
    background: #e9ecef;
    margin: 4px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
  }

  .custom-payment-buttons .btn {
    margin: 10px;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 30px;
    min-width: 250px;
  }

  .btn-custom-paypal {
    background-color: #003087;
    color: white;
  }

  .btn-custom-paypal:hover {
    background-color: #001c5a;
  }

  .btn-custom-stripe {
    background-color: #6772e5;
    color: white;
  }

  .btn-custom-stripe:hover {
    background-color: #4a56c6;
  }

  @media (max-width: 768px) {
    .custom-detail-box {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
    }

    .custom-payment-buttons .btn {
      width: 100%;
    }
  }
  .custom-total-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
}

.custom-total-box {
  display: inline-block;
  padding: 15px 30px;
  background: #f8f9fa;
  border: 2px solid #ff6043;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-total-label {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-right: 8px;
}

.custom-total-amount {
  font-size: 24px;
  font-weight: 700;
  color: #007bff;
}

.custom-payment-buttons {
  margin-top: 25px;
}

.btn-custom-paypal,
.btn-custom-stripe {
  margin: 10px;
  min-width: 220px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom-paypal {
  background-color: #003087;
  color: #fff;
}

.btn-custom-paypal:hover {
  background-color: #00246b;
}

.btn-custom-stripe {
  background-color: #6772e5;
  color: #fff;
}

.btn-custom-stripe:hover {
  background-color: #5469d4;
}