
.profiles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profiles .clubs {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.profiles .header {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.profiles .link {
    color: rgb(1, 144, 206);
    text-decoration: underline;
    font-size: 80%;
    cursor: pointer;
}

.profile {
    display: flex;
    flex-direction: row;
    /* margin: 2px 0 0 8px; */
    padding: 8px 0;
    gap: 24px;
}

.profile .imagelist {
    position: relative;
}

.profile .imagelist img {
    width: 64px;
    border: 1px solid #ffffff;
    border-radius: 32px;
}

.profile .imagelist .action span {
    position: fixed;
    bottom: 0;
    right: 0;
    color: rgb(81, 81, 81);
    margin-right: 4px;
}

.profile.imageupdate {
    display: flex;
    flex-direction: column;
    margin: 2px 0 0 8px;
    padding: 8px 0;
    row-gap: 4px;
}

.profile.imageupdate .action {
    color: rgb(1, 144, 206);
    text-decoration: underline;
    font-size: 80%;
    cursor: pointer;
}

.profile.imageupdate .action i {
    color: rgb(81, 81, 81);
    margin-right: 4px;
    font-size: 1.5em;
}

.profile.imageupdate img {
    width: 200px;
    border: 2px solid #000;
    border-radius: 5px;
}

.profile .attribs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 80%;
}
