@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
/* Import local fonts instead of Google Fonts */
@import url("/fonts/fonts.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}
/* 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;
}
/* 
  Font declarations moved to /fonts/fonts.css
  Using unified Lato family with different font-weights instead of separate families
  
  Font family mapping:
  - "Lato-Regular" → font-family: 'Lato'; font-weight: 400;
  - "Lato-Medium" → font-family: 'Lato'; font-weight: 500;
  - "Lato-Semibold" → font-family: 'Lato'; font-weight: 600;
  - "Lato-Bold" → font-family: 'Lato'; font-weight: 700;
  
  If you need to support legacy code, you can create aliases:
*/
@font-face {
  font-family: "Lato-Bold";
  src: local('Lato'), local('Lato Bold');
  font-weight: 700;
}

@font-face {
  font-family: "Lato-Regular";
  src: local('Lato'), local('Lato Regular');
  font-weight: 400;
}

@font-face {
  font-family: "Lato-Medium";
  src: local('Lato'), local('Lato Medium');
  font-weight: 500;
}

@font-face {
  font-family: "Lato-Semibold";
  src: local('Lato'), local('Lato Semibold');
  font-weight: 600;
}