.profile-page-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
}

.profile-personal-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.profile-header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.profile-cover-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 195px;
}
.profile-cover-placeholder, .profile-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #ddd;
    position: relative;
}
.profile-cover-img, .profile-image {
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none;
    object-fit: cover;
}
.profile-image-placeholder {
    border-radius: 50%;
}
.profile-image {
    border-radius: 50%;
}

.profile-header-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}

.profile-header-btn-right, .profile-header-btn-left {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: 42px;
    position: relative;
}

.profile-header-btn-option, .profile-header-btn-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border: 0.666667px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 9999px;
    cursor: pointer;
    z-index: 4;
    position: absolute;
}
.profile-header-btn-option img, .profile-header-btn-search img {
    pointer-events: none;
    user-select: none;
}

.profile-header-btn-option {
    right: 0;
    opacity: 1;
    transition: opacity 0.3s;
}
.profile-header-btn-search {
    right: 58px;
    transition: right 0.3s, background 0.3s, border-color 0.3s;
}
.profile-header-btn-option.hide {
    opacity: 0;
}
.profile-header-btn-search.active {
    right: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

.search-input-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: max-content;
    z-index: 2;
    transition: width 0.3s ease;
}
.search-input-container input {
    position: absolute;
    width: 0;
    opacity: 0;
    right: 0;
    font-family: "PeydaWebVF", serif;
    background: rgba(255, 255, 255, 0.4);
    border: 0.666667px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 9999px;
    height: 42px;
    padding: 0 55px 0 20px;
    font-weight: 600;
    box-sizing: border-box;
    transition: width 0.3s ease, opacity 0.2s;
}
.search-input-container input:focus {
    outline: none;
}
.search-input-container input.show {
    width: calc(100% - 56px);
    opacity: 1;
}

.profile-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0px 16px;
    box-sizing: border-box;
    z-index: 1;
    margin-top: 15px;
    transition: margin-top 0.4s ease;
}
.profile-btn-container.collapsed {
    margin-top: -15px;
}

.profile-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background: #E5E7EB;
    border: 4px solid #E5E5E5;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    width: 80px;
    height: 80px;
}

.profile-image-placeholder {
    border-radius: 9999px;
    width: 100%;
    height: 100%;
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    pointer-events: none;
    user-select: none;
}

.profile-btn-jobs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: -5px;
    gap: 8px;
    width: calc(100% - 96px);
}
.profile-follower, .profile-following {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: 0.666667px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 9999px;
    width: 98.83px;
    height: 34px;
}
#profile-follower-value, #profile-following-value {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    color: #1A1A1A;
    margin: 0;
    pointer-events: none;
    user-select: none;
}
#profile-follower-title, #profile-following-title {
    font-style: normal;
    font-weight: 550;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #1F2937;
    margin: 0;
    pointer-events: none;
    user-select: none;
}


.profile-btn-direct {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 128.99px;
    height: 41.33px;
    background: rgba(255, 255, 255, 0.6);
    border: 0.666667px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 9999px;
    gap: 4px;
    cursor: pointer;
}
.profile-btn-direct img {
    pointer-events: none;
    user-select: none;
}
.profile-btn-direct p {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #1F2937;
    margin: 0;
    pointer-events: none;
    user-select: none;
}

.profile-btn-follow {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 109.03px;
    height: 41.33px;
    background: var(--primary);
    border: 0.666667px solid #871028;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
    cursor: pointer;
}
.profile-btn-follow p {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    pointer-events: none;
    user-select: none;
}

.profile-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max-content;
    max-height: 160px;
    transition: max-height 0.6s ease;
    position: relative;
}
.profile-info-container.hide {
    max-height: 0px;
}
.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.profile-info.hide {
    opacity: 0;
}
.profile-info-username-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.profile-info-username-container.hide {
    opacity: 0;
}
.profile-info-username-container h5 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.6px;
    color: #111827;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.profile-info-username-container p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #6B7280;
    margin: 0;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-info-bio-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    opacity: 1;
    padding: 0 16px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}
.profile-info-bio-container.hide {
    opacity: 0;
}
.profile-info-bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
}
.profile-info-bio p {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 24px;
    color: #1F2937;
    margin: 0;
    pointer-events: none;
    user-select: none;
}

.profile-info-more-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8px 16px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}
.profile-info-more-item {
    display: flex;
    width: 50%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}
.profile-info-more-item p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #6B7280;
    pointer-events: none;
    user-select: none;
}
#profile-info-more-birth-date p{
    min-width: 150px;
    width: 100%;
}
#profile-info-more-links {
    opacity: 0;
}
.profile-info-more-edit, .profile-info-bio-edit-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.profile-info-more-edit img, .profile-info-bio-edit-btn img {
    width: 20px;
    height: 20px;
}
#bio-link {
    color: var(--primary) !important;
}
#profile-info-more-birth-date p{
    opacity: 0;
    width: 67px;
    transition: opacity 0.3s ease;
}
#profile-info-more-links p {
    opacity: 0;
    width: 90px;
    transition: opacity 0.3s ease;
}


.profile-my-post-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    position: relative;
}

.profile-my-post-tabs-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    z-index: 2;
    background: linear-gradient(0deg,rgba(229, 229, 229, 0) 0%, rgba(229, 229, 229, 1) 100%)
}

.profile-my-post-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: max-content;
    padding: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: 0.666667px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 9999px;
}

.profile-my-post-tab-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 0.666667px solid transparent;
    color: #4B5563;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, blur 0.3s, color 0.3s;
}

.profile-my-post-tab-item.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    color: #111827;
}
.profile-my-post-tab-item p {
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    user-select: none;
    pointer-events: none;
}

.profile-my-post-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 680px;
    width: 100%;
    overscroll-behavior: none;
    overflow-x: hidden;
    overflow-y: auto;
    transition: height 0.3s ease;
}
.profile-my-post-slider-container.expand {
    height: 680px;
}

.profile-my-post-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: max-content;
    width: 100%;

}

.profile-my-post-slide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    border-bottom: 0.666667px solid rgba(255, 255, 255, 0.5);
}

.profile-my-post-slide:last-child {
    margin-bottom: 85px;
    border-bottom: none;
}

.profile-my-post-slide:first-child {
    margin-top: 45px;
    border-bottom: none;
}

.profile-my-post-slide-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.profile-my-post-slide-header-left, .profile-my-post-slide-header-right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.profile-my-post-slide-header-option {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-radius: 6px;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.profile-my-post-slide-header-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 0.666667px solid rgba(255, 255, 255, 0.7);
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.05));
    border-radius: 9999px;

}
.profile-my-post-slide-header-image-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #ddd;
    border-radius: 9999px;
}

.profile-my-post-slide-header-name, .profile-my-post-slide-header-date {
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-my-post-slide-header-name h5 {
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #111827;
}

.profile-my-post-slide-header-date p {
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    pointer-events: none;
    user-select: none;
}

.profile-my-post-slide-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}

.profile-my-post-slide-text-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.profile-my-post-slide-text-container p {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 25px;
    text-align: start;
    color: #1F2937;
    margin: 0;
    pointer-events: none;
    user-select: none;
}

.profile-my-post-slide-multimedia-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    box-sizing: border-box;
    width: 274.67px;
    height: 177.33px;
    border: 0.666667px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
}
.profile-my-post-slide-multimedia-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #ddd;
    border-radius: 16px;
}
.profile-my-post-slide-multimedia-placeholder img {
    user-select: none;
    pointer-events: none;
}
.post-image {
    pointer-events: none;
    user-select: none;
    border-radius: 16px;
}

.profile-my-post-slide-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;

}

.profile-my-post-slide-footer-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.profile-my-post-slide-footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.profile-my-post img {
    pointer-events: none;
    user-select: none;
}

.profile-my-post-slide-footer-report {
    display: flex;
    justify-content: center;
    align-items: center;
}
.profile-my-post-slide-footer-report p {
    margin: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #6B7280;
    pointer-events: none;
    user-select: none;
}