.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background-color: #ffffff;
    padding: var(--header-height) 0 0 0; /* Відступ зверху */
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    border-right: 1px solid rgb(177, 177, 177);
    display: flex;
    flex-direction: column; /* Вертикальне розташування дочірніх елементів */
}

.sidebar-image {
    display: block;
    width: var(--sidebar-width);
    max-width: 100%;
    height: var(--sidebar-width);
    margin: 0;
    padding: 0;
}

.sidebar-person-description {
    margin-left: 40px;
    height: 40px;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center; /* Вирівнює елементи по правому краю */
    justify-content: flex-start;
}

.sidebar-title {
    font-family: 'Lato', sans-serif;
    font-weight: medium;
    font-size: 13px;
    color: var(--AD-black);
}

.sidebar-name {
    margin-left: 5px;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    font-size: 13px;
    color: var(--AD-black);
}

.social-media {
    height: 60px;
    margin-left: 40px;
    display: flex;
    align-items: center; /* Вирівнює елементи по правому краю */
    background-color: #ffffff;
}

.instagram-pictogram {
    width: 20px;
    height: auto;
}

.linkedin-pictogram {
    margin-left: 10px;
    width: 20px;
    height: auto;
}

.facebook-pictogram {
    margin-left: 10px;
    width: 20px;
    height: auto;
}