/* Influencer Marketing Platform - Frontend Styles */

/* CSS Variables for Theme Colors - Matching classifiedadvertz.com */
:root {
    --primary-gradient: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    --primary-color: #d9d906;
    --primary-dark: #c4c405;
    --brand-gradient: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    --brand-color: #d9d906;
    --brand-dark: #c4c405;
    --text-dark: #2c3e50;
    --text-medium: #666;
    --text-light: #888;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --Mercury: #e6e8ec;
    --black: #000000;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.15);
    --primaryfont: "Poppins", sans-serif;
}

/* Reset and Base Styles */
.influencer-platform * {
    box-sizing: border-box;
}

.influencer-platform {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Frontend Button Styles - Scoped to influencer-platform only */
.influencer-platform .btn {
    display: inline-block !important;
    font-weight: 600 !important;
    text-align: center !important;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: 12px 28px !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.influencer-platform .btn:hover {
    text-decoration: none !important;
}

.influencer-platform .btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(217, 217, 6, 0.25) !important;
}

.influencer-platform .btn-primary {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%) !important;
    color: white !important;
    border: none !important;
}

.influencer-platform .btn-primary:hover,
.influencer-platform .btn-primary:focus {
    background: linear-gradient(135deg, #c4c405 0%, #c4c405 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(217, 217, 6, 0.4) !important;
    color: white !important;
}

.influencer-platform .btn-primary:active {
    transform: translateY(0) !important;
}

.influencer-platform .btn-success {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%) !important;
    color: white !important;
    border: none !important;
}

.influencer-platform .btn-success:hover,
.influencer-platform .btn-success:focus {
    background: linear-gradient(135deg, #c4c405 0%, #c4c405 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(217, 217, 6, 0.4) !important;
    color: white !important;
}

.influencer-platform .btn-outline-primary {
    background: white !important;
    color: #d9d906 !important;
    border: 2px solid #d9d906 !important;
}

.influencer-platform .btn-outline-primary:hover,
.influencer-platform .btn-outline-primary:focus {
    background: #d9d906 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(217, 217, 6, 0.3) !important;
}

.influencer-platform .btn-outline-secondary {
    background: white !important;
    color: #666 !important;
    border: 2px solid #e0e0e0 !important;
}

.influencer-platform .btn-outline-secondary:hover,
.influencer-platform .btn-outline-secondary:focus {
    background: #f8f9fa !important;
    border-color: #d9d906 !important;
    color: #d9d906 !important;
}

/* Frontend Form Controls - Scoped to influencer-platform only */
.influencer-platform .form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.influencer-platform .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(217, 217, 6, 0.1);
}

.influencer-platform select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ====================================
   FIND INFLUENCERS & BRANDS PAGE STYLES
   ==================================== */

/* Page Header */
.influencer-platform .page-header {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    color: #2c3e50 !important;
    padding: 70px 0;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.influencer-platform .page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 45%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.influencer-platform .page-header h1 {
    font-size: 3.2em;
    font-weight: 800;
    margin: 0 0 15px 0;
    text-shadow: none;
    position: relative;
    z-index: 1;
    color: #2c3e50 !important;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.influencer-platform .page-header p {
    font-size: 1.2em;
    opacity: 1;
    margin: 0;
    position: relative;
    z-index: 1;
    color: rgba(44, 62, 80, 0.85) !important;
    font-weight: 500;
}

/* Filters Section */
.influencer-platform .filters-section {
    background: var(--bg-light);
    padding: 40px 0;
    margin-bottom: 50px;
}

.influencer-platform .filter-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(217, 217, 6, 0.1);
}

.influencer-platform .filter-form .row {
    align-items: center;
}

/* Results Section */
.influencer-platform .results-section {
    padding: 40px 0;
    background: var(--white);
}

.influencer-platform .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.influencer-platform .results-count {
    font-size: 2em;
    font-weight: 800;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.influencer-platform .results-count::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
}

.influencer-platform .results-count span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Influencer Cards */
.influencer-platform .influencer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.influencer-platform .influencer-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(217, 217, 6, 0.25);
    border-color: rgba(217, 217, 6, 0.3);
}

.influencer-platform .card-header-influencer {
    background: var(--primary-gradient);
    padding: 50px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.influencer-platform .card-header-influencer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.influencer-platform .influencer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    object-fit: cover;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
    background: white;
}

.influencer-platform .card-body-influencer {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.influencer-platform .influencer-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    text-align: center;
}

.influencer-platform .niche-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 auto 15px;
    display: block;
    width: fit-content;
}

.influencer-platform .influencer-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.influencer-platform .influencer-location {
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: center;
}

.influencer-platform .influencer-location i {
    color: #d9d906;
    margin-right: 5px;
}

.influencer-platform .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.influencer-platform .stat-item {
    text-align: center;
}

.influencer-platform .stat-item strong {
    display: block;
    font-size: 1.4em;
    font-weight: 700;
    color: #d9d906;
    margin-bottom: 4px;
}

.influencer-platform .stat-item span {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.influencer-platform .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.influencer-platform .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
    color: white;
}

.influencer-platform .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.influencer-platform .social-icon.facebook {
    background: #1877f2;
}

.influencer-platform .social-icon.twitter {
    background: #1da1f2;
}

.influencer-platform .social-icon.youtube {
    background: #ff0000;
}

.influencer-platform .social-icon.tiktok {
    background: #000000;
}

.influencer-platform .social-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.influencer-platform .card-actions {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.influencer-platform .card-actions .btn {
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}

.influencer-platform .card-actions .btn-success {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    border: none;
    color: white;
}

.influencer-platform .card-actions .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 217, 6, 0.4);
}

.influencer-platform .card-actions .btn-primary {
    background: white;
    border: 2px solid #d9d906;
    color: #d9d906;
}

.influencer-platform .card-actions .btn-primary:hover {
    background: #d9d906;
    color: white;
}

/* Brand Cards */
.influencer-platform .brand-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.influencer-platform .brand-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(217, 217, 6, 0.25);
    border-color: rgba(217, 217, 6, 0.3);
}

.influencer-platform .card-header-brand {
    background: var(--brand-gradient);
    padding: 50px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.influencer-platform .card-header-brand::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.influencer-platform .brand-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    object-fit: cover;
    margin: 0 auto;
    display: block;
    background: white;
}

.influencer-platform .card-body-brand {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.influencer-platform .brand-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    text-align: center;
}

.influencer-platform .industry-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 auto 15px;
    display: block;
    width: fit-content;
}

.influencer-platform .brand-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.influencer-platform .brand-location,
.influencer-platform .brand-website {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
    text-align: center;
}

.influencer-platform .brand-location i,
.influencer-platform .brand-website i {
    color: #d9d906;
    margin-right: 5px;
}

.influencer-platform .brand-website a {
    color: #d9d906;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.influencer-platform .brand-website a:hover {
    color: #e8e835;
    text-decoration: underline;
}

.influencer-platform .brand-stats {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.influencer-platform .stat-box strong {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #d9d906;
    margin-bottom: 4px;
}

.influencer-platform .stat-box span {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.influencer-platform .view-campaigns-link {
    display: block;
    text-align: center;
    color: #d9d906;
    text-decoration: none;
    font-weight: 600;
    padding: 12px;
    margin-top: 15px;
    border-radius: 8px;
    background: #f0fdf4;
    transition: all 0.3s ease;
}

.influencer-platform .view-campaigns-link:hover {
    background: #dcfce7;
    color: #22c55e;
    transform: translateX(5px);
}

/* Empty State */
.influencer-platform .empty-state {
    text-align: center;
    padding: 80px 20px;
}

.influencer-platform .empty-state i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.influencer-platform .empty-state h3 {
    font-size: 1.8em;
    color: #666;
    margin-bottom: 10px;
}

.influencer-platform .empty-state p {
    color: #999;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .influencer-platform .page-header h1 {
        font-size: 2em;
    }
    
    .influencer-platform .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .influencer-platform .stat-item strong {
        font-size: 1.2em;
    }
    
    .influencer-platform .filter-form .row {
        gap: 10px;
    }
    
    .influencer-platform .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ====================================
   PROFILE PAGE STYLES
   ==================================== */

/* Profile Hero Section */
.influencer-platform .profile-hero {
    position: relative;
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    padding: 60px 0 120px;
    margin-bottom: 80px;
}

.influencer-platform .profile-hero.brand-profile {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
}

.influencer-platform .profile-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #f8f9fa);
}

.influencer-platform .profile-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.influencer-platform .profile-avatar-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    object-fit: cover;
    margin: 0 auto 25px;
    display: block;
    background: white;
}

.influencer-platform .profile-name {
    font-size: 3em;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.influencer-platform .profile-tagline {
    font-size: 1.3em;
    color: rgba(255,255,255,0.95);
    margin: 0 0 20px 0;
}

.influencer-platform .profile-badge-large {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border: 2px solid rgba(255,255,255,0.3);
}

.influencer-platform .profile-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.influencer-platform .profile-social-links .social-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
}

/* Profile Content */
.influencer-platform .profile-content {
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.influencer-platform .profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.influencer-platform .profile-stat-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.influencer-platform .profile-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(217, 217, 6, 0.15);
}

.influencer-platform .profile-stat-card.brand-stat:hover {
    box-shadow: 0 8px 24px rgba(217, 217, 6, 0.15);
}

.influencer-platform .profile-stat-card i {
    font-size: 36px;
    color: #d9d906;
    margin-bottom: 15px;
}

.influencer-platform .profile-stat-card.brand-stat i {
    color: #d9d906;
}

.influencer-platform .profile-stat-card .stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 700;
    color: #d9d906;
    margin-bottom: 5px;
}

.influencer-platform .profile-stat-card.brand-stat .stat-number {
    color: #d9d906;
}

.influencer-platform .profile-stat-card .stat-label {
    display: block;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Profile Sections */
.influencer-platform .profile-section {
    background: white;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.influencer-platform .profile-section-title {
    font-size: 1.8em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #d9d906;
}

.influencer-platform .profile-section.brand-section .profile-section-title {
    border-bottom-color: #d9d906;
}

.influencer-platform .profile-about {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.influencer-platform .profile-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.influencer-platform .profile-info-list li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.influencer-platform .profile-info-list li:last-child {
    border-bottom: none;
}

.influencer-platform .profile-info-list li i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.influencer-platform .brand-section .profile-info-list li i {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
}

.influencer-platform .profile-info-list .info-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 10px;
    min-width: 120px;
}

.influencer-platform .profile-info-list .info-value {
    color: #666;
    flex: 1;
}

.influencer-platform .profile-info-list .info-value a {
    color: #d9d906;
    text-decoration: none;
    font-weight: 600;
}

.influencer-platform .brand-section .profile-info-list .info-value a {
    color: #d9d906;
}

.influencer-platform .profile-info-list .info-value a:hover {
    text-decoration: underline;
}

/* Campaign Cards in Profile */
.influencer-platform .campaign-card-mini {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #d9d906;
}

.influencer-platform .brand-section .campaign-card-mini {
    border-left-color: #d9d906;
}

.influencer-platform .campaign-card-mini:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.influencer-platform .campaign-card-mini h4 {
    font-size: 1.2em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.influencer-platform .campaign-card-mini .campaign-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.influencer-platform .campaign-card-mini .meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.influencer-platform .campaign-card-mini .meta-item i {
    margin-right: 5px;
    color: #d9d906;
}

.influencer-platform .brand-section .campaign-card-mini .meta-item i {
    color: #d9d906;
}

.influencer-platform .campaign-card-mini .campaign-description {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.influencer-platform .campaign-card-mini .btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* Profile Actions */
.influencer-platform .profile-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.influencer-platform .profile-actions .btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.influencer-platform .profile-actions .btn-primary {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    border: none;
    color: white;
}

.influencer-platform .profile-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 217, 6, 0.4);
}

.influencer-platform .profile-actions .btn-outline {
    background: white;
    border: 2px solid #d9d906;
    color: #d9d906;
}

.influencer-platform .profile-actions .btn-outline:hover {
    background: #d9d906;
    color: white;
}

.influencer-platform .brand-profile .profile-actions .btn-primary {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
}

.influencer-platform .brand-profile .profile-actions .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(217, 217, 6, 0.4);
}

.influencer-platform .brand-profile .profile-actions .btn-outline {
    border-color: #d9d906;
    color: #d9d906;
}

.influencer-platform .brand-profile .profile-actions .btn-outline:hover {
    background: #d9d906;
    color: white;
}

/* Profile Responsive */
@media (max-width: 768px) {
    .influencer-platform .profile-hero {
        padding: 40px 0 100px;
        margin-bottom: 60px;
    }
    
    .influencer-platform .profile-name {
        font-size: 2em;
    }
    
    .influencer-platform .profile-avatar-large {
        width: 140px;
        height: 140px;
    }
    
    .influencer-platform .profile-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .influencer-platform .profile-section {
        padding: 25px 20px;
    }
    
    .influencer-platform .profile-actions {
        flex-direction: column;
    }
    
    .influencer-platform .profile-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ====================================
   TEMPLATE-SPECIFIC PROFILE STYLES
   (Matching actual template classes)
   ==================================== */

/* ====================================
   PREMIUM PROFILE HEADER
   ==================================== */

/* Profile Header Section */
.influencer-platform .profile-header {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    color: #2c3e50 !important;
    padding: 50px 0 45px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.influencer-platform .premium-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Premium Avatar Wrapper */
.influencer-platform .premium-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.influencer-platform .profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.influencer-platform .premium-avatar {
    border: 7px solid white;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.05);
}

.influencer-platform .premium-avatar:hover {
    transform: scale(1.05);
}

/* Profile Info Header */
.influencer-platform .profile-info-header {
    position: relative;
    z-index: 1;
}

.influencer-platform .profile-name {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50 !important;
    margin: 0 0 12px 0;
    text-shadow: none;
    line-height: 1.2;
}

.influencer-platform .premium-name {
    font-size: 2.4em;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Meta Row */
.influencer-platform .profile-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.influencer-platform .meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(44, 62, 80, 0.15);
    color: #2c3e50;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid rgba(44, 62, 80, 0.2);
}

.influencer-platform .meta-badge svg {
    flex-shrink: 0;
    color: #2c3e50;
    stroke: #2c3e50;
}

.influencer-platform .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(44, 62, 80, 0.85);
    font-size: 0.95em;
    font-weight: 500;
}

.influencer-platform .meta-item svg {
    flex-shrink: 0;
    color: rgba(44, 62, 80, 0.7);
    stroke: rgba(44, 62, 80, 0.7);
}

/* Social Icons in Header */
.influencer-platform .social-icons-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.influencer-platform .social-icon-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid rgba(44, 62, 80, 0.15);
    border-radius: 50%;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.influencer-platform .social-icon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    text-decoration: none;
}

.influencer-platform .social-icon-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    border-color: transparent;
}

.influencer-platform .social-icon-btn.instagram:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-icon-btn.facebook:hover {
    background: #1877F2;
    color: white !important;
    border-color: transparent;
}

.influencer-platform .social-icon-btn.facebook:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-icon-btn.twitter:hover {
    background: #1DA1F2;
    color: white !important;
    border-color: transparent;
}

.influencer-platform .social-icon-btn.twitter:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-icon-btn.youtube:hover {
    background: #FF0000;
    color: white !important;
    border-color: transparent;
}

.influencer-platform .social-icon-btn.youtube:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-icon-btn.tiktok:hover {
    background: #000000;
    color: white !important;
    border-color: transparent;
}

.influencer-platform .social-icon-btn.tiktok:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-icon-btn.linkedin:hover {
    background: #0A66C2;
    color: white !important;
    border-color: transparent;
}

.influencer-platform .social-icon-btn.linkedin:hover svg {
    color: white !important;
    fill: white !important;
}

/* Premium Stats Row */
.influencer-platform .premium-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: white;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    margin-top: 20px;
}

.influencer-platform .stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.influencer-platform .stat-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.influencer-platform .stat-icon svg {
    color: #2c3e50 !important;
    fill: #2c3e50 !important;
}

.influencer-platform .stat-content {
    flex: 1;
}

.influencer-platform .stat-number {
    font-size: 1.8em;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 4px;
}

.influencer-platform .stat-label {
    font-size: 0.85em;
    color: rgba(44, 62, 80, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.influencer-platform .stat-divider {
    width: 1px;
    height: 40px;
    background: #e9ecef;
    margin: 0 15px;
}

/* Premium Contact Button */
.influencer-platform .btn-premium-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #2c3e50 !important;
    color: #d9d906 !important;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.05em;
    font-weight: 700;
    text-decoration: none !important;
    border: 3px solid #2c3e50 !important;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.25);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
}

.influencer-platform .btn-premium-contact svg {
    flex-shrink: 0;
    color: #d9d906 !important;
    stroke: #d9d906 !important;
    fill: #d9d906 !important;
}

.influencer-platform .btn-premium-contact span {
    color: #d9d906 !important;
}

.influencer-platform .btn-premium-contact:hover {
    background: #1a252f !important;
    border-color: #1a252f !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.35);
    color: #d9d906 !important;
    text-decoration: none !important;
}

.influencer-platform .btn-premium-contact:hover svg {
    color: #d9d906 !important;
    stroke: #d9d906 !important;
    fill: #d9d906 !important;
}

.influencer-platform .btn-premium-contact:hover span {
    color: #d9d906 !important;
}

.influencer-platform .btn-premium-contact:active {
    transform: translateY(-2px);
}

/* Responsive Adjustments for Premium Header */
@media (max-width: 991px) {
    .influencer-platform .premium-name {
        font-size: 2em;
    }
    
    .influencer-platform .premium-stats-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 14px 18px;
    }
    
    .influencer-platform .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .influencer-platform .stat-number {
        font-size: 1.5em;
    }
    
    .influencer-platform .btn-premium-contact {
        padding: 14px 28px;
        font-size: 1em;
    }
}

@media (max-width: 767px) {
    .influencer-platform .premium-header {
        padding: 35px 0 30px 0;
    }
    
    .influencer-platform .premium-name {
        font-size: 1.8em;
        text-align: center;
    }
    
    .influencer-platform .profile-meta-row {
        justify-content: center;
    }
    
    .influencer-platform .social-icons-header {
        justify-content: center;
    }
    
    .influencer-platform .premium-stats-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .influencer-platform .stat-divider {
        display: none;
    }
    
    .influencer-platform .stat-box {
        padding: 10px;
        background: rgba(255,255,255,0.5);
        border-radius: 8px;
    }
}

.influencer-platform .profile-niche {
    font-size: 1.2em;
    color: #2c3e50 !important;
    margin: 10px 0;
}

.influencer-platform .profile-niche i {
    margin-right: 8px;
    color: #2c3e50 !important;
}

.influencer-platform .profile-location {
    font-size: 1.1em;
    color: #2c3e50 !important;
    margin: 5px 0;
}

.influencer-platform .profile-location i {
    margin-right: 8px;
    color: #2c3e50 !important;
}

.influencer-platform .profile-stats-inline {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 25px;
}

.influencer-platform .stat-inline {
    text-align: center;
}

.influencer-platform .stat-inline strong {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50 !important;
    margin-bottom: 5px;
}

.influencer-platform .stat-inline span {
    display: block;
    font-size: 0.9em;
    color: rgba(44, 62, 80, 0.8) !important;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.influencer-platform .btn-contact {
    background: #2c3e50 !important;
    color: #d9d906 !important;
    border: 3px solid #2c3e50 !important;
    padding: 15px 40px !important;
    font-size: 1.1em !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.influencer-platform .btn-contact:hover,
.influencer-platform .btn-contact:focus {
    background: #1a252f !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    color: #d9d906 !important;
    text-decoration: none !important;
    border-color: #1a252f !important;
}

/* Profile Content */
.influencer-platform .profile-content {
    padding: 40px 0;
}

.influencer-platform .content-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.influencer-platform .content-card h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #d9d906;
}

.influencer-platform .content-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05em;
}

.influencer-platform .sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.influencer-platform .sidebar-card h4 {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.influencer-platform .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.influencer-platform .stat-row:last-child {
    border-bottom: none;
}

.influencer-platform .stat-row span {
    color: #666;
    font-size: 1em;
}

.influencer-platform .stat-row strong {
    color: #d9d906;
    font-size: 1.3em;
    font-weight: 700;
}

/* Social Links in Profile */
.influencer-platform .social-links-profile {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.influencer-platform .social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    padding: 14px 18px !important;
    background: white !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: 2px solid #e9ecef !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

.influencer-platform .social-link svg {
    flex-shrink: 0;
    color: #2c3e50 !important;
    fill: #2c3e50 !important;
}

.influencer-platform .social-link span {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #2c3e50 !important;
}

.influencer-platform .social-link:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    text-decoration: none !important;
}

.influencer-platform .social-link.instagram {
    border-color: #E1306C !important;
}

.influencer-platform .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
}

.influencer-platform .social-link.instagram:hover span,
.influencer-platform .social-link.instagram:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-link.facebook {
    border-color: #1877f2 !important;
}

.influencer-platform .social-link.facebook:hover {
    background: #1877f2 !important;
    color: white !important;
}

.influencer-platform .social-link.facebook:hover span,
.influencer-platform .social-link.facebook:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-link.twitter {
    border-color: #1da1f2 !important;
}

.influencer-platform .social-link.twitter:hover {
    background: #1da1f2 !important;
    color: white !important;
}

.influencer-platform .social-link.twitter:hover span,
.influencer-platform .social-link.twitter:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-link.youtube {
    border-color: #ff0000 !important;
}

.influencer-platform .social-link.youtube:hover {
    background: #ff0000 !important;
    color: white !important;
}

.influencer-platform .social-link.youtube:hover span,
.influencer-platform .social-link.youtube:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-link.tiktok {
    border-color: #000000 !important;
}

.influencer-platform .social-link.tiktok:hover {
    background: #000000 !important;
    color: white !important;
}

.influencer-platform .social-link.tiktok:hover span,
.influencer-platform .social-link.tiktok:hover svg {
    color: white !important;
    fill: white !important;
}

.influencer-platform .social-link.linkedin {
    border-color: #0077b5 !important;
}

.influencer-platform .social-link.linkedin:hover {
    background: #0077b5 !important;
    color: white !important;
}

.influencer-platform .social-link.linkedin:hover span,
.influencer-platform .social-link.linkedin:hover svg {
    color: white !important;
    fill: white !important;
}

/* Brand Profile Specific Classes */
.influencer-platform .profile-header-brand {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    color: #2c3e50 !important;
    padding: 60px 0;
    margin-bottom: 40px;
}

.influencer-platform .profile-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.9);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.influencer-platform .profile-industry {
    font-size: 1.2em;
    color: #2c3e50 !important;
    margin: 10px 0;
}

.influencer-platform .profile-industry i {
    margin-right: 8px;
    color: #2c3e50 !important;
}

.influencer-platform .profile-website {
    font-size: 1.1em;
    color: #2c3e50 !important;
    margin: 5px 0;
}

.influencer-platform .profile-website i {
    margin-right: 8px;
    color: #2c3e50 !important;
}

.influencer-platform .profile-website a {
    color: #2c3e50 !important;
    text-decoration: underline;
    font-weight: 600;
}

.influencer-platform .profile-website a:hover {
    color: #1a252f !important;
}

/* Brand Profile Specific Button */
.influencer-platform .profile-header-brand .btn-contact,
.influencer-platform section.profile-header-brand .btn-contact {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(217, 217, 6, 0.4) !important;
}

.influencer-platform .profile-header-brand .btn-contact:hover,
.influencer-platform .profile-header-brand .btn-contact:focus,
.influencer-platform section.profile-header-brand .btn-contact:hover,
.influencer-platform section.profile-header-brand .btn-contact:focus {
    background: linear-gradient(135deg, #c4c405 0%, #c4c405 100%) !important;
    box-shadow: 0 8px 25px rgba(217, 217, 6, 0.5) !important;
    color: white !important;
}

/* Brand Profile Content Cards */
.influencer-platform section.profile-header-brand ~ * .content-card h3 {
    border-bottom-color: #d9d906;
}

.influencer-platform section.profile-header-brand ~ * .stat-row strong {
    color: #d9d906;
}

/* Generic Brand Profile Variant (using wrapper class) */
.influencer-platform .brand-profile .profile-header {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
}

.influencer-platform .brand-profile .content-card h3 {
    border-bottom-color: #d9d906;
}

.influencer-platform .brand-profile .stat-row strong {
    color: #d9d906;
}

.influencer-platform .brand-profile .btn-contact {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(217, 217, 6, 0.4) !important;
}

.influencer-platform .brand-profile .btn-contact:hover,
.influencer-platform .brand-profile .btn-contact:focus {
    background: linear-gradient(135deg, #c4c405 0%, #c4c405 100%) !important;
    box-shadow: 0 8px 25px rgba(217, 217, 6, 0.5) !important;
    color: white !important;
}

/* Ensure proper text color override */
.influencer-platform .profile-header,
.influencer-platform .profile-header-brand {
    color: #2c3e50 !important;
}

.influencer-platform .profile-header *,
.influencer-platform .profile-header-brand * {
    color: #2c3e50 !important;
}

.influencer-platform .profile-header a:not(.btn),
.influencer-platform .profile-header-brand a:not(.btn) {
    color: #2c3e50 !important;
}

/* Ensure content cards have proper background */
.influencer-platform .content-card,
.influencer-platform .sidebar-card {
    background: white !important;
}

/* Ensure proper spacing */
.influencer-platform .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Text color overrides to prevent theme interference */
.influencer-platform .text-muted {
    color: #999 !important;
}

.influencer-platform p,
.influencer-platform span {
    line-height: inherit;
}

/* Link colors matching theme */
.influencer-platform a:not(.btn):not(.social-link):not(.social-icon) {
    color: #d9d906;
    text-decoration: none;
    transition: color 0.3s ease;
}

.influencer-platform a:not(.btn):not(.social-link):not(.social-icon):hover {
    color: #c4c405;
    text-decoration: underline;
}

.influencer-platform a:not(.btn):not(.social-link):not(.social-icon):focus {
    color: #c4c405;
    outline: 2px solid rgba(217, 217, 6, 0.25);
    outline-offset: 2px;
}

/* Responsive for Template Profiles */
@media (max-width: 768px) {
    .influencer-platform .profile-stats-inline {
        flex-direction: column;
        gap: 20px;
    }
    
    .influencer-platform .profile-avatar,
    .influencer-platform .profile-logo {
        width: 140px;
        height: 140px;
    }
    
    .influencer-platform .profile-name {
        font-size: 1.8em;
    }
    
    .influencer-platform .social-links-profile {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Layout */
.influencer-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-header {
    background: linear-gradient(135deg, #d9d906 0%, #e8e835 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.dashboard-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    font-weight: 300;
}

.dashboard-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1em;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
    color: #0073aa;
    font-weight: bold;
}

.stat-card p {
    margin: 0;
    color: #666;
    font-size: 1.1em;
}

/* Content Sections */
.content-section {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-section h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.8em;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
}

/* Campaign Cards */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.campaign-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.campaign-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.3em;
}

.campaign-card .campaign-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}

.campaign-card .campaign-description {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.campaign-card .campaign-actions {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: #0073aa;
    color: white;
}

.btn-primary:hover {
    background: #005a87;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
    color: white;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #1e7e34;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid #0073aa;
    color: #0073aa;
}

.btn-outline:hover {
    background: #0073aa;
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.rejected {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.completed {
    background: #d1ecf1;
    color: #0c5460;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .influencer-dashboard {
        padding: 10px;
    }
    
    .dashboard-header h1 {
        font-size: 2em;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .campaigns-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-card .campaign-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Profile Styles */
.profile-header {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #0073aa;
}

.profile-name {
    font-size: 2em;
    margin: 0 0 10px 0;
    color: #333;
}

.profile-role {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.profile-stat {
    text-align: center;
}

.profile-stat h4 {
    margin: 0;
    font-size: 1.5em;
    color: #0073aa;
}

.profile-stat p {
    margin: 5px 0 0 0;
    color: #666;
}

/* Messaging Styles */
.message-thread {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.message-item {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    position: relative;
}

.message-item.sent {
    background: #0073aa;
    color: white;
    margin-left: 20%;
}

.message-item.received {
    background: #f8f9fa;
    color: #333;
    margin-right: 20%;
}

.message-meta {
    font-size: 0.8em;
    opacity: 0.7;
    margin-bottom: 5px;
}

.message-content {
    line-height: 1.5;
}

/* Wallet Styles */
.wallet-balance {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.wallet-balance h2 {
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

.wallet-balance p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1em;
}

.transaction-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-amount {
    font-weight: bold;
    font-size: 1.1em;
}

.transaction-amount.credit {
    color: #28a745;
}

.transaction-amount.debit {
    color: #dc3545;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.p-0 { padding: 0; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
