.bg-influencer-cover {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
    background-image: url(https://d9s0v90ir6jjz.cloudfront.net/img/default-profile-pic.png)
}

.bg-brand-cover {
    height: 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0;
    position: relative;
    background-image: url(https://d9s0v90ir6jjz.cloudfront.net/img/default-profile-pic.png)
}

.profile-badge-position {
    display: block;
    margin-top: -20px;
    text-align: center;
    position: relative;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
}

.influencer-main-info {
    width: 100%;
    height: 210px;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); /* Background for contrast */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding-left: 16px;
    color: #FFFFFF;
}

.influencer-profile-name {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
}

.influencer-profile-text-sm {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
}

.brand-profile-text-sm {
    color: #0B1828;
    font-size: 14px;
    font-weight: 400;
}

.influencer-profile-marker-icon {
    color: #748194;
}

.influencer-profile-bottom-info {
    padding-right: 16px;
    height: 36px;
}

.brand-profile-bottom-info {
    padding-top: 26px;
    height: 60px;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-11 {
    font-size: 11px !important;
}

.lh-1dot5rem {
    line-height: 1.5rem;
}

.fw-400 {
    font-weight: 400;
}

.profile-text {
    color: #0B1828;
}

.profile-badge {
    background-color: #EEF0F2;
}

.badge-bold {
    padding: 10px;
}

.black-header {
    color: #0B1828;
}

#tab-photos, #tab-videos,
[id^="tab-photos-"], [id^="tab-videos-"] {
    padding-top: 17px;
    padding-bottom: 80px;
}

#tab-photos .col-4,
[id^="tab-photos-"] .col-4 {
    padding: 4px;
}

#tab-photos .row,
[id^="tab-photos-"] .row {
    margin-left: -4px;
    margin-right: -4px;
}

/* Transparent group dropdown select menu */
.influencer-main-info .filter-option-inner-inner {
    color: #ffffff;
}

.influencer-main-info .bootstrap-select > .dropdown-toggle:after {
    color: #ffffff;
}

.influencer-main-info .jform_field .dropdown.bootstrap-select,
.influencer-main-info .jform_field .form-control {
    background: transparent;
    color: #f9fafd;
    font-weight: 500;
}

/* Compact side-by-side generic links (info panel view) */
.profile-links-compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.profile-link-compact {
    display: block;
    padding: 8px 12px;
    background: var(--falcon-100, #f9fafd);
    color: var(--falcon-900, #232e3c) !important;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    border-radius: 9999px;
    border: 1px solid var(--falcon-300, #d8e2ef);
    transition: background 0.15s ease, border-color 0.15s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-link-compact:hover {
    background: var(--falcon-200, #edf2f9);
    border-color: var(--falcon-400, #b6c1d2);
}

@media (max-width: 480px) {
    .profile-links-compact {
        grid-template-columns: 1fr;
    }
}