html, body{
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    overflow-y: auto;
}

#main{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0%;
    right: 0%;
    overflow-y: auto;
}

#app{
    width: 100%;
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.MuiCard-root:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.chart canvas {
    max-width: 500px;
    max-height: 200px;
    height: auto !important;
    width: 100% !important;
}
.chart {
    justify-items: center;
    margin-bottom: 40px;
}

.sidebar {
    width: 200px;
    background-color: #f0f0f0;
    padding: 1rem;
    height: 100vh;
}

.sidebar h2 {
  margin-top: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 1rem;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
  