
/* Profile Menu Styles */
.profile-section {
    display: flex;
    align-items: center;
    margin-top: 20px;
    
}

.profile-menu {
    position: relative;
    z-index: 1001;
    margin-left: -20%;
}

.profile-name {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.profile-pic {
    height: 50px;
    width: 50px;
    border: 2px solid #FFCC2A;
    border-radius: 50%;
    object-fit: cover;
    /*margin-left: -10%;*/
}

.dropdown-content {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 4px;
    margin-top: 5px;
    display: none;
    z-index: 1001;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.dropdown-content a img {
    height: 15px;
    width: 15px;
    margin-right: 5px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
    margin-left: 5px;
    transition: transform 0.2s ease;

}

.dropdown-arrow.up {
    transform: rotate(180deg);
}

.row, .wrapper{
    margin-top:1%;
}
.body{
    background-color:white;
}
