@import url("/fonts/SakkalMajalla/SakkalMajalla.css");
body {
  font-family: "Sakkal Majalla", Verdana, Geneva, sans-serif;
  font-size: 22px;
  font-weight: bold;
}

h1 {
  font-family: "Sakkal Majalla", Verdana, Geneva, sans-serif;
  font-weight: bold;
}

span, label, a, .GroupHeader, .StaticText, .TextCell, .Layout .Caption {
  font-family: "Sakkal Majalla", Verdana, Geneva, sans-serif;
  font-size: 22px;
  font-weight: bold;
}


:root {
  /*font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;*/
  font-family: "Sakkal Majalla", Verdana, Geneva, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

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

body.dx-rtl.dx-theme-fluent-typography {
  /*font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;*/
  font-family: "Sakkal Majalla", Verdana, Geneva, sans-serif;
}

body.dx-rtl .dx-widget input,
body.dx-rtl.dx-widget textarea {
  font-family: "Sakkal Majalla", Verdana, Geneva, sans-serif;
  font-weight: 400;
  font-size: 22px;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.5em;
  line-height: 1.1;
}

body.dx-rtl.dx-theme-fluent-typography h2 {
  font-size: 2.6em;
  line-height: 1.1;
}



button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}

.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-column {
  display: flex;
  flex-direction: column;  
}

.flex-initial { flex: 0 auto;} 
.flex-1 {
  flex: 1 1 0;
}



.text-end {text-align: end;}



/* Equivalent CSS for: h-full */
.h-full {
  height: 100%;
}

/* Equivalent CSS for: w-full */
.w-full {
  width: 100%;
}

/* Equivalent CSS for: flex */
.flex {
  display: flex;
}

/* Equivalent CSS for: justify-center */
.justify-center {
  justify-content: center;
}

/* Equivalent CSS for: items-center */
.items-center {
  align-items: center;
}

/* Equivalent CSS for: rounded-md */
.rounded-md {
  border-radius: 0.375rem; /* This is typically 6px, but check your Tailwind config for exact value */
}

/* Equivalent CSS for: overflow-hidden */
.overflow-hidden {
  overflow: hidden;
}


/* Equivalent CSS for: max-w-full */
.max-w-full {
  max-width: 100%;
}

/* Equivalent CSS for: max-h-full */
.max-h-full {
  max-height: 100%;
}

/* Equivalent CSS for: object-contain */
.object-contain {
  object-fit: contain;
}

/* Equivalent CSS for: rounded-lg */
.rounded-lg {
  border-radius: 0.5rem; /* This is typically 8px, but check your Tailwind config for exact value */
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.shadow-md2 {
  box-shadow: 0 14px 16px 13px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)
}

.dx-popup-content {
    -webkit-user-drag: none;
    padding: 4px 8px;
}