/* ==== Estilos Globais ==== */
body {
  background-color: black;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 15px;
  color: white;
}

.container {
  max-width: 700px;
  margin: 40px auto;
  background-color: #023047;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

input, textarea, button {
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

#listaPoemas {
  color: black;
  list-style: none;
  padding: 0;
}

#listaPoemas li{
  background-color: #8ecae6;
  
}

.poema {
  background-color: #fefae0;
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  position: relative;
}

.poema-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.poema-actions {
  position: absolute;
  right: 10px;
  top: 10px;
}

.poema-actions button {
  background: none;
  border: none;
  color: #9b2226;
  cursor: pointer;
  font-size: 16px;
}

.link_home{
   color: #023047;
   text-decoration-line: none;
}



/* ==== Responsividade ==== */
@media (max-width: 768px) {
  
  .layout {
    flex-direction: column;
  }