body {
  background-color: #f3f3f4;
  background-image: url('../assets/img/logomarca_scmi_2_fundo_branco.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 100vh;
  background-position: center;
}

/* Custom styles for the sidebar */
.sidebar {
  height: 100vh;
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  /* White background */
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Adjust content padding to accommodate sidebar */
.content {
  margin-left: 250px;
  /* Width of the sidebar */
  padding: 20px;
}

@media (max-width: 767px) {
  .content {
    margin-left: 0;
  }
}
