.profile-header {
    position: relative;
    padding: 0 10px;
}

.cover-photo img {
    width: 100%;
    max-height: 300px;
    max-width: 100%;
    object-fit: cover;
    overflow: hidden;
    position: relative;
}


.profile-details {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.profile-avatar img {
    width: 175px;
    height: 175px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #f7c65c;
    position: absolute;
    top: -50px;
    left: 20px;
}

.photo-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 50%;
}

.overlay-circle {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* creates a square container */
    border-radius: 50%;
    overflow: hidden;
    border: #fff 4px solid;
    background-color: #fff;

}

.overlay-circle img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0px;
    margin: 0px;
}

.photo-container img:hover {
    cursor: pointer;
    opacity: 0.9;
}

.profile-avatar img:hover,
.cover-photo img:hover {
    cursor: pointer;
    opacity: 0.9;
}

.profile-info {
    margin-left: 190px !important;
}

.profile-actions {
    margin-left: auto;
    margin-right: 20px;
    text-align: right;
}

.profile-btn-primary {
    background-color: #1877f2;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.profile-btn-success {
    background-color: rgb(4, 193, 4);
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.user-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
}

.user-menu li {
    flex-grow: 1;
    text-align: center;
}

.user-menu li:last-child {
    border-right: none;
}

.user-menu a {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    width: 100%
}

.user-menu a:hover {
    background-color: #f5f5f5;
}

.tm-social-icon.active {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #3085a3;
    border-bottom: 4px solid #3085a3;
}

.user-menu li:active a {
    border-bottom: 4px solid #3085a3;
    color: #3085a3;
    font-weight: bold;
}


.bio-container {
    text-align: justify;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
}

.bio-container p {
    margin-bottom: 15px;
}

.bio-placeholder {
    font-size: 16px;
    color: #555;
}

.bio-container:hover {
    background-color: #f8f8f8;
    transition: background-color 0.3s ease;
}

.bio-container:hover p {
    color: #007bff;
    transition: color 0.3s ease;
}


#recommendations {
    background-color: #f5f6f7;
    padding: 10px;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.carousel-inner {
    border-radius: 8px;
}

.gender-img img {
    width: 40px;
    height: 40px;
}

.table-with-background {
    background-color: #f2f6fe !important;
}

th {
    min-width: 200px;
    width: 20%;
    color: #099;
}

td {
    width: 80%;
    text-align: left;
    cursor: pointer;
    margin-right: 10px;
}


.title {
    height: 60px;
    background-color: #00acee;
    padding: 10px 20px;
    margin-bottom: 10px;
}

.title h1 {
    color: #fff !important;
    font-weight: normal;

}


.remove-icon {
    display: none;
    position: absolute;
    bottom: 10px;
    background-color: white;
    color: #00acee !important;
    /* Adjust as needed */
    border: none;
    cursor: pointer;
}

.icon-container:hover .remove-icon {
    display: inline-block;
}

.account-actions div {
    cursor: pointer;
    display: inline-block;
    margin-left: 50px;
    width: 250px;
    height: 60px;
    padding: 10px;
}

.account-actions div:hover {
    background-color: #f5f5f5;
    color: #18637e;
}

.username-container {
    position: relative;

}

.username-container img {
    position: absolute;
    width: 20px;
    height: 20px;
}

#tag-container {
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;

}

.tag {

    display: inline-block;
    background-color: #00acee;
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tag:hover {
    background-color: #007bff;
}