
    .back-to-profile-btn {
        background: #F3F4F6;
        border: 1px solid #D1D5DB;
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #374151;
        font-size: 14px;
    }
    
    .edit-profile-btn {
        height: 40px;
        background: #4F46E5;
        width: 150px;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .login-to-follow-btn {
        background: #4F46E5;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
        margin-top: 10px;
        font-weight: 600;
    }
    
    .camera-label {
        position: absolute;
        bottom: 60px;
        right: calc(50% - 70px + 100px);
        background: #4F46E5;
        color: white;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: 4px solid white;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .save-profile-btn {
        background: #10B981;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
    }
    
    .cancel-profile-btn {
        background: #F3F4F6;
        color: #374151;
        border: 1px solid #D1D5DB;
        padding: 12px 24px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
    }
    
    .view-profile-btn-small {
        background: #000000;
        border: 1px solid #ddd;
        padding: 5px 15px;
        border-radius: 15px;
        cursor: pointer;
        font-size: 13px;
        color: white;
        text-decoration: none;
    }
    
    .follow-btn-small {
        background: #4F46E5;
        color: white;
        border: none;
        padding: 5px 15px;
        border-radius: 15px;
        cursor: pointer;
        font-size: 13px;
    }
    
    .unfollow-btn-small {
        background: #EF4444;
        color: white;
        border: none;
        padding: 5px 15px;
        border-radius: 15px;
        cursor: pointer;
        font-size: 13px;
    }
    
    .profile-tabs {
        display: flex;
        gap: 10px;
        margin: 20px 0;
        border-bottom: 2px solid #E5E7EB;
        padding-bottom: 10px;
    }
    
    .profile-tab {
        background: none;
        border: none;
        padding: 8px 16px;
        cursor: pointer;
        font-size: 16px;
        color: #6B7280;
        border-radius: 20px;
    }
    
    .profile-tab.active {
        background: #4F46E5;
        color: white;
    }
    
    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .follower-item, .following-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px;
        border-bottom: 1px solid #E5E7EB;
    }
    
    .follower-avatar, .following-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        font-weight: bold;
        overflow: hidden;
    }
    
    .follower-avatar img, .following-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .follower-info, .following-info {
        flex: 1;
    }
    
    .following-actions {
        display: flex;
        gap: 10px;
    }
  