.trav-map-container path {
    fill: #bacce9;
    stroke: #fff;
    stroke-width: 1;
    transition: all 0.5s;
}

.trav-map-container path.trav-visited {
    fill: #053583;
    stroke: #bacce9;
    stroke-width: 1;
}

.trav-map-container path:hover {
    fill: #415e8d;
    stroke: #fff;
    stroke-width: 1;
    transition: all 0.2s;
}

.trav-map-container path.trav-hover {
    fill: #00a794;
    stroke: #fff;
    stroke-width: 1;
    transition: all 0.2s;
}

.trav-map-container {
    margin-top: 40px;
    padding: 10px;
}

.trav-map-tooltip {
    min-height: 30px;
    font-weight: 700;
}

.trav-edit-profile-links {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.trav-edit-profile-links a {
    flex: 1;
    background: #223b57;
    color: white;
    text-align: center;
}

.trav-edit-profile-links a:hover {
    color: white;
    text-decoration: none;
    background: #212428;
}

.trav-profile-section {
    padding: 30px;
    border: 1px solid #cfcfcf;
}

/*Search stuff*/
div#trav-member-search-results {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.trav-member-search-result {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.trav-member-search-avatar {
    height: 170px;
    background-size: cover;
    background-position: center center;
}

#trav-member-search-results .member-tags {
    float: right;
    background: #e9e9e9;
    border-radius: 10px;
    padding: 1px 20px;
    font-size: 0.8rem;
    line-height: initial;
}

.trav-member-search-result div {
    flex: 1;
}

.trav-member-search-result div.trav-member-search-info {
    flex: 6;
}

form#trav-member-search-form {
    display: flex;
}

form#trav-member-search-form input {
    flex: 1;
}

form#trav-member-search-form #trav-member-search-input {
    flex: 5;
}

@media screen and (max-width: 782px) {
    .trav-profile-toppen {
        flex-direction: column;
        min-height: auto;
    }

    .trav-avatar {
        aspect-ratio: 4 / 5;
        width: 100%;
    }

    .trav-profile-middle {
        flex-direction: column;
    }

    .trav-member-search-result {
        flex-direction: column;
    }

    .trav-member-search-avatar {
        aspect-ratio: 1 / 1;
        width: 100%;
    }
}