body {
  background-image: url('../Imagenes/Menu/feed.png');
  background-size: cover;
  background-position: center;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  color: #f4f4f4;
}

.navbar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.navbar a {
  color: #8be9fd;
  text-decoration: none;
  font-weight: bold;
}

.banner {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0;
  color: #50fa7b;
}

.wall-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(20, 20, 40, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.user-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid #50fa7b;
}

.user-details h2 {
  margin: 0;
  color: #50fa7b;
}

.user-details p {
  margin: 0;
  color: #ccc;
}

.post-creator {
  background-color: #2b2b3d;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.post-creator textarea {
  width: 100%;
  height: 100px;
  padding: 0.75rem;
  border-radius: 8px;
  resize: vertical;
  font-family: inherit;
  border: none;
  background: #1a1a2e;
  color: #f4f4f4;
}

.post-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.post-options input[type="file"] {
  color: #ccc;
}

.post-options button {
  padding: 0.6rem 1.2rem;
  background-color: #50fa7b;
  color: #1a1a2e;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.post-options button:hover {
  transform: scale(1.05);
}

.feed-section h3 {
  color: #8be9fd;
  margin-bottom: 1rem;
}

.feed-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.muro-post {
  display: flex;
  gap: 1rem;
  background: #1e1e2f;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.muro-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #8be9fd;
}

.muro-content {
  flex-grow: 1;
}

.muro-username {
  font-weight: bold;
  font-size: 1rem;
  color: #8be9fd;
}

.muro-body {
  color: #f4f4f4;
  margin: 0.5rem 0;
}

.muro-date {
  font-size: 0.8rem;
  color: #aaa;
}

.tico {
  border-left: 4px solid #50fa7b;
  padding-left: 1rem;
}
