body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f8;
  margin: 0;
  padding: 0;
}

a {
  color: black;
  text-decoration: none;
}

header {
  background-color: #a72c00;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
}

header a {
  color: white;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

header a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.container {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

ul.post-list,
#perfil-posts {
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
}

ul.post-list li,
#perfil-posts li {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

ul.post-list li:hover,
#perfil-posts li:hover {
  background-color: #f0f0f0;
}

h2, h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #333;
}

p {
  margin: 0 0 1rem 0;
  color: #555;
}

.card {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}
