/* Container: two buttons side by side with 8px gap */
.cds-buttons {
    display: flex;
    gap: 8px;
    margin-top: 1em;
  }
  
  /* Make each button fill half the row */
  .cds-buttons .cds-add-to-cart,
  .cds-buttons .cds-buy-now {
    flex: 1;
    position: relative;
    padding: 0.75em 1em;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.2;
    cursor: pointer;
  }
  
  /* Add to Cart styling */
  .cds-add-to-cart {
    background: #ffffff;
    color: #1C9DA0;
    border: #1d9da0 solid 2px !important;
  }

  .cds-add-to-cart:hover {
    background: #ffffff;
    color: #1C9DA0 !important;
  }
  .cds-add-to-cart::after {
    content: "";
    position: absolute;
    right: 0.75em;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-image: url("https://courseable.com/wp-content/uploads/2025/03/Vector-1-4.svg");
    background-size: contain;
    background-repeat: no-repeat;
     
  }
  
  /* Buy Now styling */
  .cds-buy-now {
    background: #1C9DA0;
    color: #ffffff !important;
  box-shadow: 0px 0px 7px 2px #169fa27a;
  }

  .cds-buy-now:hover {
    background: #1C9DA0;
    color: #ffffff;
  }
  .cds-buy-now::after {
    content: "";
    position: absolute;
    right: 0.75em;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    background-image: url("https://courseable.com/wp-content/uploads/2025/03/Vector-1-3.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }

input[type="radio"] {
    accent-color: #6949CB !important;
}
  