@font-face {
  font-family: 'meteocons';
  src:
    url('./fonts/meteocons.ttf?kx31oc') format('truetype'),
    url('./fonts/meteocons.woff?kx31oc') format('woff'),
    url('./fonts/meteocons.svg?kx31oc#meteocons') format('svg');
  font-weight: normal;
  font-style: normal;
}

.meteocons {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'meteocons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Reset default margins and allow full height */
html, body, #root {
  height: 100%;
  margin: 0;
}

/* Main app container */
.app-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Scrollable content area */
.app-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0; /* important for flex scrolling */
}


/* 
.muiltr-155dxwa-MuiButtonBase-root-MuiListItemButton-root.active{

  background-color: brown !important;
} */

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.MuiLinearProgress-bar {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
  animation: MuiLinearProgress-keyframes-indeterminate1 2s linear infinite;
}