#profile-id-card {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: #f1f1f1;
    padding: 15px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 50px;
    height: 50px
}

#profile-id-card h4 {
    margin: 0;
    font-size: 16px;
}

#profile-id-card p {
    margin: 0px 0;
    font-size: 14px;
}

#edit-profile {
    display: block;
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 14px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#edit-profile:hover {
    background-color: #0056b3;
}