body {
    font-family: Arial,sans-serif;
    box-sizing: border-box;
}

a {
    text-decoration: underline;
    background-color: transparent;
    color: black;
}

a:link {
    color: black;
}

a:visited {
    color: black;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.pull-right {
    float: right;
}

a.login-link {
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    margin: 16px 0;
    outline: none;
    color: white;
    background-color: #4894e3;
}

a.login-link:hover, a.login-link:active {
    border: 1px solid black;
}

.user-bar {
    display: flex;
    gap: 14px;
}

.user-bar .name-part {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.user-bar .name-part .email {
    color: #9b9b9b;
    font-size: small;
}

.user-bar .avatar-part .avatar img {
    height: 45px;
    width: 45px;
    border-radius: 17px;
    outline: 3px solid #7457FF;
    margin: 0 5px;
}

.item-file .item-icon {
    margin-right: 8px;
}

.item-file .copy-button {
    height: 24px;
    padding-left: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.item-file .copy-button:active {
    padding-left: 9px;
}