body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  position: absolute;
  height: 100%;
  width: 100%;
}

header {
  position: absolute;
  background-color: #fffefe;
  color: #fff;
  margin: 0px;
  align-items: center; /* Centraliza verticalmente */
  width: 85%;
  left: 15%;
  border-bottom: #e3e8ed solid 1px;
  min-height: 85px;
}

.logo {
  position: absolute;
  left: 15%;
  color: #333;
  width: 50%;
  height: 65px;
  align-items: center;
  top: -5px;
}


.logo img {
  width: 180px; /* Define a largura do ícone */
  height: 175px; /* Mantém a proporção original */
}

.menu {
  align-items: center; /* Centraliza verticalmente */
  position: relative;
}

.search {
  position: absolute;
  right: 100px;
}

.search input[type="text"] {
  background-color: #f7f7f7;
  color: #141414;
  height: 25px;
  border: #333 solid 1px;
  border-color: #333;
  border-radius: 3px;
  width: 200px;
  position: relative;
  top: 5px;
}

.search button {
  height: 28px;
  border: #333 solid 1px;
  border-radius: 3px;
  border-color: #333;
  color: #333;
  cursor: pointer;
  margin-left: 5px;
  position: relative;
  top: 5px;
}

/* Estilos para o cabeçalho responsivo */
@media (max-width: 768px) {
  nav ul li {
    display: block;
    margin-bottom: 10px;
  }
}

.menu-left {
  width: 17%;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  border-right: #e3e8ed solid 1px;
  background-color: #dfdede;
}

.menu-left .documentation {
  font-size: 20px;
  position: relative;
  color: #141414;
  left: 25%;
  top: 20%;
}

.menu-left .documentation span {
  position: relative;
  top: 15px;
}

.content {
  position: absolute;
  left: 16%;
  width: 69%;
  top: 85px;
}

.content .changes{
  width: 80%;
  position: relative;
  text-align: inherit;
  left: 20%;
}


.menu-left .poweredBy {
  position: absolute;
  bottom: 2%;
  height: 30px;
  width: 80%;
  text-align: center;
  border-radius: 10px;
}

.menu-left .poweredBy img{
  width: 30px;
  height: 30px;
  position: absolute;
  margin-left: 70px;
  left: 40%;
  top: -5px;
}

.menu-left .poweredBy span{
  font-size: 15px;
  position: absolute;
  left: 30%;
}

.content .changes .logs {
  position: relative;
}

.menu-list {
  display: none;
  list-style-type: none;
  position: absolute;
  top: 5px;
  left: -10px;
}

.menu-list li {
  position: relative;
  margin-top: 5px;
}

.menu-list li :hover{
  font-weight: bold;
}

.menu-list a {
  list-style-type: none;
  text-decoration: none;
  color: inherit;
}

.menu-toggle:hover {
  font-weight: bold;
  cursor: pointer;
}