@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.gstatic.com/s/materialsymbolsoutlined/v266/kJF4BvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oDMzBwG-RpA6RzaxHMPdY40KH8nGzv3fzfVJU22ZZLsYEpzC_1qmr5Y0J1Llf.woff2')
      format('woff2'),
    url('./font-declarations/MaterialSymbolsOutlined.woff2') format('woff2'),
    /* download link --> https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@300,0..1*/
      /* Modern Browsers */ url('./font-declarations/MaterialSymbolsOutlined.ttf')
      format('truetype'); /* Older Browsers and Fallback */
}

.material-icons {
  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-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* Full-screen loading container */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #eff1f3;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Spinner animation */
.spinner-loading-screen {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-left-color: #0097a7;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
