  .card-option {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease;
    cursor: pointer;
  }
  .card-option:hover {
    background-color: #dbdbdb;
  }
  .card-option-title {
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
  }
  .card-option-text {
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.95rem;
  }
  .arrow {
    font-weight: bold;
    font-size: 1.2rem;
  }
  .something-else {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    background-color: #fefefe;
    color: #000000;
  }
  .something-else a {
    color: #000000;
    text-decoration: underline;
  }

  .selected {
    border: 2px solid #0d0d0e;
    background: linear-gradient(to right, #f9f1ff, #ffffff);
  }

  .card-option .details {
    font-size: 0.95rem;
    color: #444;
  }

  .radio-circle {
    border: 2px solid #050505;
    border-radius: 50%;
    height: 18px;
    width: 18px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
  }
  .selected .radio-circle {
    background-color: #000000;
  }

  .practitioner-option {
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color 0.3s, background-color 0.3s;
  }

  .practitioner-option.selected {
    border: 2px solid #000000;
    background: #f9f1ff;
  }

  .practitioner-option.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    height: 8px;
    width: 8px;
    background-color: #000000;
    border-radius: 50%;
  }

  .avatar {
    width: 40px;
    height: 40px;
    background-color: #ccc;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .time-slot {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 25px;
    cursor: pointer;
    color: #000000;
  }
  .time-slot:hover {
    background: #d1d1d1;
  }
  .modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  .modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    width: 400px;
    position: relative;
  }
  .modal-content h2 {
    margin-top: 0;
  }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }
  .book-btn {
    margin-top: 20px;
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #000000;
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
  }

  .deposit-title {
    text-align: center;
  }

  .deposit-title h2 {
    margin: 0;
  }

  .deposit-title p {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
  }

  .secure {
    color: #0c8f5f;
    font-size: 14px;
    margin: 20px 0 10px;
  }

  input, select {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  .pay-btn {
    background: #000000;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
  }

  .summary {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    font-size: 14px;
  }

  .summary-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .summary-item i {
    margin-right: 10px;
    font-style: normal;
    font-weight: bold;
  }

  .bold {
    font-weight: bold;
  }

  .visa-icons {
    float: right;
  }
  
  /* arrow-button base styling */
#arrowBack {
  font-size: 2.2rem;
  margin-left: 25%;
  margin-bottom: 1%;
  padding: 0; /* replaces Bootstrap’s p-0 inline */
  background: none;
  border: none;
  cursor: pointer;
}

/* hide the container by default */
#arrowBackContainer {
  display: none;
}
  
@media (max-width: 576px) {
  /* on xs screens make all .w-50 elements full-width */
  .w-50 {
    width: 100% !important;
    max-width: 100% !important;
  }
  
   #arrowBack {
    margin-left: 0;
  }
  
}

  

  
