header {
    background-color: #edc7b7;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav a.nav-link,
header nav a.nav-link:hover,
header nav a.nav-link:focus {
    text-decoration: none !important;
    color: inherit; /* Optional: maintain consistent color */
}
    
.logo img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}
    
nav {
    display: flex;
    align-items: center;
     gap: 20px;
}
    
.nav-link {
    text-decoration: none !important;
    color: inherit;
}
    
.profile {
    position: relative;
    cursor: pointer;
}
    
.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}
    
.profile-menu {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 15px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1000;
}
    
.profile-menu.active {
    visibility: visible;
    opacity: 1;
    top: 70px;
}

.profile-menu::before {
    content: "";
    position: absolute;
    top: -5px;
    right: 28px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
}
  
.profile-menu h3 {
    width: 100%;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
    font-weight: 500;
    color: #555;
    line-height: 1.5em;
}
  
.profile-menu h3 span {
    font-size: 14px;
    color: #cecece;
    font-weight: 300;
}
  
.profile-menu ul {
    list-style: none;
}
  
.profile-menu ul li {
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}
  
.profile-menu ul li img {
    max-width: 20px;
    margin-right: 10px;
    opacity: 0.5;
    transition: 0.5s;
}
  
.profile-menu ul li:hover img {
    opacity: 1;
}
  
.profile-menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.5s;
}
  
.profile-menu ul li:hover a {
    color: #ff5d94;
}