:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root,
body,
html {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
* {
  margin: 0;
  padding: 0;
  direction: rtl;
  box-sizing: border-box;
  color: #1d1d1b;
  font-family: "Assistant", sans-serif;
}

a {
  color: inherit;
  color: -webkit-link;
  text-decoration: none;
  padding-bottom: 2px;
  text-align: center;
  /* font-size: large; */
}
a:hover {
  /* text-decoration: underline; */
  color: #c1b4ae;
}

svg {
  cursor: pointer;
}
svg:hover {
  /* transform: scale(1.1); */
}

/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #b09590 !important;
  border-radius: 6px;
}

/* For Firefox */
/* Note: Firefox only supports styling the thumb, not the track */
* {
  scrollbar-color: #b09590 #f1f1f1;
}

/* For Edge and IE */
/* Note: Microsoft Edge and Internet Explorer only support styling the scrollbar color, not the thumb or track */
* {
  scrollbar-face-color: #b09590;
  scrollbar-track-color: #f1f1f1;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

#NagishLiTag > #NagishLiBar > #NagishLiBarStrip {
  /* background-color: rgba(0, 0, 0, 1) !important; */
  opacity: 0.7;
}

.react-calendar .react-calendar__month-view__days button {
  position: relative;
}

.sale-price-red-cross {
  position: relative;
}
/* index.css or styled component */
.sale-price-red-cross::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-image: url("/assets/crossIcon.svg");
  opacity: 0.6;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1000;
  animation: breathing 1s infinite ease-in-out; /* Apply breathing animation */
}

/* Breathing animation */
@keyframes breathing {
  0% {
    transform: scale(1); /* Initial size */
  }
  50% {
    transform: scale(1.15); /* Expand */
  }
  100% {
    transform: scale(1); /* Shrink back */
  }
}
