/* 
  FILE: public/fonts/material-symbols.css
  
  Download the Material Symbols font file and serve it locally
  so it works offline and loads instantly in the Android WebView.
  
  Steps:
  1. Download the font from:
     https://github.com/google/material-design-icons/tree/master/variablefont
     File: MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2
  
  2. Save to: restaurantiq-web/public/fonts/MaterialSymbolsOutlined.woff2
  
  3. Add this CSS file to public/fonts/material-symbols.css
  
  4. In index-app.html replace the Google Fonts link with:
     <link rel="stylesheet" href="/fonts/material-symbols.css" />
*/

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url('/fonts/MaterialSymbolsOutlined.woff2') format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.filled {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
