:root {
  color-scheme: light;
}


@font-face {
  font-family: "Arabic-font";
  src: url("../assets/fonts/arabic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.eng-font {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.cbtn {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-decoration: none;
  background-color: white;
  color: rgb(43, 43, 43);
  border: 1px solid #d78152;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 0 2px 4px rgba(84, 84, 84, 0.3);
}

.cbtn:active {
  transform: translateY(5px);
  box-shadow: 0 2px 0 #e97a03;
}

.offCanvas {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 420px;
  height: 100%;
}

.offCanvasHeader {
  background-color: #ffdbc8;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px;
}

.offCanvasBody {
  width: 100%;
  padding: 10px;
  background-color: white;
  height: calc(100% - 50px);
  overflow-y: scroll;
}

.offCanvasBody::-webkit-scrollbar {
  display: none;
}



@media screen and (max-width: 500px) {
  .offCanvas{
    width: 100vw;
  }
}



@media (prefers-color-scheme: dark) {

  html,
  body {
    background: white !important;
    color: black !important;
  }

  * {
    background-color: inherit !important;
    color: inherit !important;
  }
}