.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 10px;
    margin: auto;
    margin-bottom: 20px;

}

.avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #64096d;
}

.company {
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
}

.name {
    padding: 5px;
    line-height: 15px;
    font-weight: 500;
}

.position {
    padding: 5px;
    line-height: 5px;
    font-weight: 400;
}

.social-link {
    margin: 15px;
}

.social-link img {
    height: 30px;
    width: 30px;
    margin: 0px 3px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    text-align: left;
    font-size: 12px;
}

.phone,
.email,
.address,
.website,
.date {
    width: 100%;
    min-height: 40px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #f8f8f8;
    background: #ececec;
    font-size: 13px;
}

.contact-info img {
    margin-left: 20px;
    margin-right: 10px;
    height: 28px;
}

.save-btn .btn {
    width: 100%;
    background-color: #d7d7d7;
    font-size: 18px;
}

.save-btn .btn:nth-child(1) {
    margin-right: 10px;
}

.save-btn .btn:nth-child(2) {
    width: 20%;
}

.details {
    padding: 5px;
    margin: 5px;
    max-width: 500px;
    margin: auto;
    background: #fafdff;
    border-radius: 10px;
    border: 1px solid #bfbfbf;
}

a {
    text-decoration: none;
    color: black;
}

.sidebar {
    background-color: rgba(32, 0, 145, 1);
    height: 100vh;
    float: left;
    width: 200px;
    margin-right: 20px;
}

.sidebar ul li {
    width: 100%;
    border-bottom: 1px solid #3103d4;
    padding: 8px 10px;
}

.sidebar ul li a {
    color: white;
    font-size: 17px;
    display: block;
}

@media only screen and (max-width: 600px) {
    .contact-info img {
        margin-left: 0px;
        margin-right: 5px;
    }

    .phone,
    .email,
    .website,
    .date {
        font-size: 12px;
    }

    .address {
        font-size: 12px;
    }

}