/* File: custom-account.css */

/* ============================= */
/* Checkbox personnalisée – Page Mon Compte */
/* ============================= */

.woocommerce-account input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid #333;
  background: #fff;
  position: relative;
  vertical-align: middle;
  border-radius: 2px;
}

.woocommerce-account input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0px;
  width: 10px;
  height: 18px;
  border: solid #ffa800;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}
