/* Estilização do menu lateral */
.sidebar {
  position: fixed;
  top: 0;
  left: -335px; /* Começa oculto à esquerda */
  width: 335px;
  height: 100%;
  background-color: #1A5656;
  transition: 0.3s;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
  z-index: 1050;
  border-radius: 0px 10px 10px 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sidebar.show {
  left: 0; /* Exibe o menu */
}
.sidebar-header {
  color: #F6F6F6;
  font-family: 'Roboto';
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid white;
  gap: 20px;
  height: 89px;
}
.sidebar a {
  flex: 1; /* Faz com que cada link tenha o mesmo tamanho */
  min-height: 0;
  display: flex;
  align-items: center;
  color: #1A5656;
  padding: 12px;
  text-decoration: none;
  border-bottom: 1px solid #1A5656;
  transition: 0.3s;
  background-color: #F6F6F6;
}
.sidebar a:hover {
  background-color: #3A8484;
  color: #144040;
  transition: background 0.3s ease;
}
.sidebar i {
  width: 30px;
  font-size: 18px;
  text-align: center;
}

.sidebar, .sidebar a {
  box-sizing: border-box;
}

.close-btn {
  cursor: pointer;
  font-size: 28px;
}
.open-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #2F5D62;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#sidebar .image {
  width: 50px;
  height: 50px;
  color: #1A5656;
  margin-right: 20px;
}
