body {
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 100vh;
  background-color: #181818;
  border-right: 1px solid #333;
  transition: width 0.3s ease;
  z-index: 1000;
}

.sidebar.open {
  width: 250px;
}

.sidebar.open ~ main {
  padding-left: 250px;
}

header {
  background-color: #1e1e1e;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  margin-left: 60px;
  transition: margin-left 0.3s ease;
}

.sidebar.open ~ header {
  margin-left: 250px;
}

h2 {
  margin: 0;
  font-size: 22px;
}

.btn-voltar {
  background-color: #444;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s ease;
}

.btn-voltar:hover {
  background-color: #666;
}

main {
  padding: 20px 20px 20px 60px;
  box-sizing: border-box;
  max-width: calc(600px + 40px + 60px);
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: auto !important;
}

#listaPOIs {
  width: 100%;
  max-width: 600px;
}

.poi-card {
  background-color: #222;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.poi-card strong {
  color: #1669d1;
}

.poi-card p {
  margin: 6px 0;
}

.actions {
  margin-top: 10px;
  margin-left: -15px;
  text-align: left;
}

.actions button {
  margin-left: 10px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aprovar {
  background-color: #2a7f62;
  color: white;
}

.rejeitar {
  background-color: #dc3545;
  color: white;
}

.ver-mais {
  background-color: #1669d1;
  color: white;
}
