body {
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    background-color: #f5f6f7;
}

.card {
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

#wrapper {
    display: flex;
    height: 100vh;
    overflow: hidden; /* Mantenere questo o rimuoverlo a seconda dell'effetto desiderato */
}

#page-content-wrapper {
    overflow-y: auto;
    min-width: 0; /* <-- AGGIUNGI QUESTA RIGA */
}

#sidebar-wrapper {
    background-color: #212529;
    color: white;
}

@media (min-width: 768px) {
  #sidebar-wrapper {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
  }
}