﻿.user-profile-title {
    max-width: var(--container-width);
    margin: auto;
    margin-top: 1rem;
    font-size: 2rem;
}

.user-profile-title a,
.user-profile a {
    color: var(--turquoise-link);
    text-decoration: none;
}
.user-profile-title a:hover,
.user-profile a:hover {
    color: var(--turquoise);
    text-decoration: underline;
}

.user-profile .title {
    font-weight: bold;
}

.user-profile .value {
    margin-bottom: 0.5rem;
    overflow-wrap: break-word;
}

.user-profile .description div {
    min-height: 1rem;
}

.user-profile .comment {
    font-size: 0.9rem;
    font-style: italic;
}

.user-profile table {
    width: 100%;
}

.user-profile .picture img {
    max-height: 250px;
    max-width: 400px;
    width: 100%;
}

.user-profile .share-button {
    width: 100%;
}

.user-actions {
    display: flex;
    column-gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;
}
.user-actions .btn {
    min-width: 90px;
}

.smart-filling .card-body {
    background-color: var(--light-turquoise);
}
.smart-filling .actions {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 0.5rem;
    align-items: center;
}

@media (max-width: 767px) {
    .user-profile .value {
        padding-left: 2rem;
    }
}