.nav-item {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 16px;
  color: #8e8b8b;
  padding: 1px 1px;
  font-weight: 700;
}
.nav-item a {
  color: #1a1a1a;
  text-decoration: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background-color: #8d80bd; /* keep your beige tone */
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background-color: #f5f5f0; /* soft warm background */
}

.wrapper {
  padding-top: 64px; /* adjust this value to match your header height */
}

.profile-window {
  background: #f5f5f0; /* soft warm background */
  border-radius: 32px 0 0 32px;
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
  width: 450px;
  max-width: 100vw;
  height: calc(100vh - 80px);
  padding: 2.5em 1.2em;
  text-align: center;
  position: fixed;
  top: 80px;
  right: 0;
  left: unset;
  z-index: 1000;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-left: 1.5px solid #e0dbc9;
}

.profile-window .profile-pic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  margin-bottom: 0.5em;
}

.profile-window a {
  text-decoration: none;
  transition: color 0.2s;
}

.profile-window a:hover {
  opacity: 0.8;
}

.navbar, .nav-tabs, .custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 0cm;
  width: 100vw;
  z-index: 2000;
  background-color: #505052 !important; /* keep your beige tone */
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.wrapper {
  padding-top: 64px; /* adjust this value to match your navbar height */
  margin-left: 0.5cm;
  margin-right: 0.5cm;
}

.nav-link,
.nav-link:visited {
  color: #1a1a1a !important; /* dark gray/black for strong contrast */
  font-weight: 600;
}
.nav-link.active {
  color: #202021 !important; /* highlight active tab if you want */
  background-color: #ece5d8;
}
.nav-link:hover,
.nav-link:focus {
  color: #adaeaf !important; /* or any accent color you prefer on hover */
  background-color: black;
}

@media (max-width: 900px) {
  .profile-window {
    position: static;
    margin: 1.5em auto;
    left: unset;
    right: unset;
    top: unset;
  }
}

@media (max-width: 1100px) {
  .profile-window {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border-left: none;
    margin: 1.5em auto;
    left: unset;
    right: unset;
    top: unset;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  }
}