@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
/* Display Regular font for Hindi - Noto Sans Devanagari supports Devanagari script */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px !important;
  padding: 0px !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: auto;
  font-family: "Gilroy-Regular-☞", Helvetica, Arial, sans-serif;
}

/* Hindi: Display Regular font - Noto Sans Devanagari for proper Devanagari/Hindi rendering */
html[lang="hi"] body,
html[lang="hi"] body * {
  font-family: "Noto Sans Devanagari", "Display", sans-serif !important;
}

/* Ensure no white space on sides */
body > * {
  max-width: 100% !important;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
