.nav {
  background: #333;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-link {
  color: #fff; /* White */
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  background-color: #555; /* Darker Gray */
}

/* .nav a {
  margin: 0 15px;
} */

.profile-pic-container {
  text-align: center;
  position: relative;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #D4A017; /* Gold border */
  display: block;
  margin: 0 auto 10px;
  object-fit: cover;
}

.upload-pic {
  cursor: pointer;
  color: #355E3B;
  margin: 5px 0;
  font-size: 1em;
  display: inline-block;
}

.upload-pic:hover {
  color: #D4A017;
}

#imageUpload {
  display: none;
}

.bio-section {
  margin: 20px 0;
  text-align: center;
}

.bio-section p {
  color: #555;
  margin: 0;
}

.edit-bio {
  cursor: pointer;
  color: #355E3B;
  margin-left: 5px;
  font-size: 1em;
}

.edit-bio:hover {
  color: #D4A017;
}

#bioInput {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #4A3728;
  border-radius: 5px;
  font-family: 'Merriweather', Georgia, serif;
  background: #FFF;
}

#saveBio {
  padding: 8px 16px;
}

.stories {
  max-height: 400px;
  overflow-y: auto;
  margin-top: 20px;
}

.story {
  background: #FFF;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #4A3728;
}

.story h3 {
  color: #355E3B;
  cursor: pointer;
}

.story h3:hover {
  color: #D4A017;
}

.story p {
  color: #555;
}

.delete-button {
  background: #8B0000; /* Dark Red */
}

.delete-button:hover {
  background: #A52A2A;
}