.profile-wrapper {
    align-items: center;
    background-color: #f3f3f3;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.profile-wrapper .profile-info {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.profile-info::after {
    border-bottom: 2px solid white;
    content: '';
    width: 100%;
}

.profile-wrapper .person-icon {
    background-color: #dcdce0;
    border-radius: 50%;
    color: #aaaab2;
    height: 100px;
    padding: 10px;
    width: 100px;
}

.profile-wrapper .menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 20px;
    width: 100%;
}

.profile-wrapper .submenu {
    display: none;
    list-style: none;
    padding-left: 70px;
}

.profile-wrapper input[type="checkbox"]:checked + .submenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-wrapper .menu-item {
    display: flex;
    flex-direction: column;
}

.profile-wrapper .menu-item input[type="checkbox"] {
    display: none;
}

.profile-wrapper .menu-item label {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 20px;
    padding: 8px;
}

.profile-wrapper .menu-item .icon {
    align-items: center;
    background-color: #dcdce0;
    border-radius: 50%;
    display: flex;
    height: 45px;
    justify-content: center;
    width: 45px;
}

.profile-wrapper .menu-item svg {
    color: white;
    height: 25px;
    width: 25px;
}

.profile-wrapper .menu-item a, .profile-wrapper .menu-item label {
    text-decoration: none;
    color: black;
}
