/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Vazirmatn", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

i {
  display: flex;
  justify-content: center;
  align-content: center;
}

/* CUSTOM CHECKBOX */
.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 16px;
  height: 16px;
  border: none;
  border-radius: 3px;

  /* gray */
  background: rgba(163, 163, 163, 0.73);

  cursor: pointer;
  display: inline-block;
  position: relative;

  transition: background 0.2s ease;
  outline: none !important;
  box-shadow: none !important;
}

/* Checked state (blue) */
.custom-checkbox:checked {
  background: #318fe3;
}

/* White checkmark — centered */
.custom-checkbox:checked::after {
  content: "";
  position: absolute;

  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);

  width: 6px;
  height: 10px;

  border: solid #fff;
  border-width: 0 2px 2px 0;
}

/* No focus glow */
.custom-checkbox:focus {
  box-shadow: none !important;
}

/* JDP (Datepicker) */
jdp-container {
  z-index: 1060 !important;
}
