img {
    float: none !important;
}

.sq-input {
    margin: 10px 0px 0px 0px !important;
    font-size: 1.387em;
    background-color: #f2f2f2;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.125);
    box-sizing: border-box;
}
fieldset.wooSquare-checkout {
    padding: 23px 10px 0;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
}

.table-responsive {
}

.payment_box.payment_method_square_plus {
    padding: 18px !important;
}
@media only screen and (max-width: 500px) {
    div.payment_box.payment_method_square_plus .form-row.form-row-first,
    div.payment_box.payment_method_square_plus .form-row.form-row-last {
        float: none;
        width: 100%;
    }
}

.cardWrap {
}
table.cardWrapTable {
    padding-top: 10px;
    margin-bottom: 0px;
}
table.cardWrapTable td,
table.cardWrapTable th {
    padding: 15px 10px;
    height: 60px;
    font-size: 14px;
    vertical-align: middle;
    background: transparent;
}

table.cardWrapTable tbody tr:nth-child(odd) {
    background: #fff;
}

.savecardlink {
    cursor: pointer;
}

#saved_cards {
    cursor: pointer;
}

.payment_method_square_plus label {
    font-size: 14px;
}

#payment .payment_methods li img {
    float: right !important;
    float: right !important;
    max-width: 28px;
    margin-top: 3px;
}
table.cardWrapTable td img {
    display: inline-block;
    vertical-align: top;
    margin: 0px;
}
#spinner {
   position: absolute;
    left: 68%;
    margin-left: -120px;
    width: 40px;
    margin-top: 5px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #333;
    animation: spin 1s linear infinite;
}
input#wooc_square_tmethod {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
}
input#wooc_square_tmethod:hover {
  background-color: #3e8e41;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
button#terminal-pay-button {
    width: 100%;
    cursor: pointer;
}
img.terminal-pay-button-img {
    padding: 5px;
    left: 0;
    width: 35px;
}


button.button.apply-reward-btn {
    background-color: var(--wp--preset--color--contrast);
    border-radius: .33rem;
    border-color: var(--wp--preset--color--contrast);
    align-items: center;
    display: inline-flex
;
    height: auto;
    justify-content: center;
    position: relative;
    text-align: center;
    box-shadow: none;
    border: none;
    outline: none;
    transition: box-shadow .1s linear;
    width: 100%;
    padding: 1em;
    font-family: inherit;
    font-size: var(--wp--preset--font-size--small);
    font-style: normal;
    font-weight: 500;
    color: var(--wp--preset--color--base);
    cursor: pointer;
}

button#blocks-remove-loyalty-reward {
    background-color: var(--wp--preset--color--contrast);
    border-radius: .33rem;
    border-color: var(--wp--preset--color--contrast);
    align-items: center;
    display: inline-flex
;
    height: auto;
    justify-content: center;
    position: relative;
    text-align: center;
    box-shadow: none;
    border: none;
    outline: none;
    transition: box-shadow .1s linear;
    width: 100%;
    padding: 1em;
    font-family: inherit;
    font-size: var(--wp--preset--font-size--small);
    font-style: normal;
    font-weight: 500;
    color: var(--wp--preset--color--base);
    cursor: pointer;
}



/* General Styling for both Loyalty Sections */
.custom-loyalty-points,
.loyalty-blocks-container-remove {
  padding: 18px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e1e4e8;  /* Light grey border to match WooCommerce style */
  margin-bottom: 20px;
}

/* Title Styling */
.custom-loyalty-points span,
.loyalty-blocks-container-remove h4 {
  font-size: 1.125rem;  /* Default WooCommerce font size for headings */
  font-weight: 600;
  color: #000;  /* Black color for text */
  margin-bottom: 12px;
  line-height: 1.2;
}

/* Paragraph Styling */
.custom-loyalty-points p,
.loyalty-blocks-container-remove p {
  margin: 8px 0;
  color: #000;  /* Black color for text */
  font-size: 1rem;  /* Default WooCommerce font size for body text */
  line-height: 1.5;
}

/* Strong Elements for Highlight */
.custom-loyalty-points strong,
.loyalty-blocks-container-remove strong {
  color: #000;  /* Black color for strong text */
  font-weight: 600;
}

/* List Items for Rewards */
.custom-loyalty-points ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.custom-loyalty-points li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 10px;
}

.custom-loyalty-points li::before {
  position: absolute; 
  left: 0;
  color: #000;  /* Black bullet points */
  font-weight: 600;
}

/* Radio Button Styling */
.custom-loyalty-points input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
}

/* Button Styling */
.apply-reward-btn,
#blocks-remove-loyalty-reward {
  padding: 10px 14px;
  background: #000;  /* Black button */
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  text-align: center;
}

/* Active State for Buttons */
.apply-reward-btn:active,
#blocks-remove-loyalty-reward:active {
  transform: translateY(1px);
}
/* Remove Bullet Points from List */
.custom-loyalty-points ul,
.loyalty-blocks-container-remove ul {
  list-style-type: none;  /* Remove bullet points */
  padding-left: 0;  /* Remove default padding */
  margin-top: 10px;
}

.custom-loyalty-points li,
.loyalty-blocks-container-remove li {
  padding-left: 0;  /* Align list items without indentation */
  margin-bottom: 10px;
}
/* Responsive Design */
@media (max-width: 480px) {
  .custom-loyalty-points,
  .loyalty-blocks-container-remove {
    padding: 14px;
  }

  .custom-loyalty-points span,
  .loyalty-blocks-container-remove h4 {
    font-size: 1rem;  /* Adjusted font size for mobile */
  }

  .custom-loyalty-points p,
  .loyalty-blocks-container-remove p {
    font-size: 0.95rem;  /* Slightly smaller font for mobile */
  }

  .apply-reward-btn,
  #blocks-remove-loyalty-reward {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}
